Best way to load image from list python scriptSave image as for example .png by a scriptHow to get all images for an image sequence? (from Python)3D tool add-on window locks/freezes when importing an image with PythonI can't load an image from a scriptBest way to get a list of modifiers in Python?in python load blender file & delete objectsLoading an image to a texture from a python script filePython UI: How to load an image from drive and select it?Load camera track from an external file (by Python script)Load images with substring in filename from a given path
How exploitable/balanced is this homebrew spell: Spell Permanency?
Car headlights in a world without electricity
What Exploit Are These User Agents Trying to Use?
Fair gambler's ruin problem intuition
What historical events would have to change in order to make 19th century "steampunk" technology possible?
How to remove border from elements in the last row?
In the UK, is it possible to get a referendum by a court decision?
If a warlock makes a Dancing Sword their pact weapon, is there a way to prevent it from disappearing if it's farther away for more than a minute?
Different meanings of こわい
Why is the sentence "Das ist eine Nase" correct?
Can I hook these wires up to find the connection to a dead outlet?
Sums of two squares in arithmetic progressions
ssTTsSTtRrriinInnnnNNNIiinngg
Finding the error in an argument
GFCI outlets - can they be repaired? Are they really needed at the end of a circuit?
Does the Idaho Potato Commission associate potato skins with healthy eating?
How to find if SQL server backup is encrypted with TDE without restoring the backup
Does Dispel Magic work on Tiny Hut?
Forgetting the musical notes while performing in concert
How does a dynamic QR code work?
Can someone clarify Hamming's notion of important problems in relation to modern academia?
How to travel to Japan while expressing milk?
How do conventional missiles fly?
How seriously should I take size and weight limits of hand luggage?
Best way to load image from list python script
Save image as for example .png by a scriptHow to get all images for an image sequence? (from Python)3D tool add-on window locks/freezes when importing an image with PythonI can't load an image from a scriptBest way to get a list of modifiers in Python?in python load blender file & delete objectsLoading an image to a texture from a python script filePython UI: How to load an image from drive and select it?Load camera track from an external file (by Python script)Load images with substring in filename from a given path
$begingroup$
For some reason i have append images , now i want load all image by step.
image_path = C:
image_list= []
for fn in os.listdir(image_path):
image_list.append(fn)
###first_image = bpy.data.images.load(image_list[0]) <----?
###second_image = bpy.data.images.load(image_list[1]) <----?
python
$endgroup$
add a comment |
$begingroup$
For some reason i have append images , now i want load all image by step.
image_path = C:
image_list= []
for fn in os.listdir(image_path):
image_list.append(fn)
###first_image = bpy.data.images.load(image_list[0]) <----?
###second_image = bpy.data.images.load(image_list[1]) <----?
python
$endgroup$
add a comment |
$begingroup$
For some reason i have append images , now i want load all image by step.
image_path = C:
image_list= []
for fn in os.listdir(image_path):
image_list.append(fn)
###first_image = bpy.data.images.load(image_list[0]) <----?
###second_image = bpy.data.images.load(image_list[1]) <----?
python
$endgroup$
For some reason i have append images , now i want load all image by step.
image_path = C:
image_list= []
for fn in os.listdir(image_path):
image_list.append(fn)
###first_image = bpy.data.images.load(image_list[0]) <----?
###second_image = bpy.data.images.load(image_list[1]) <----?
python
python
edited 19 hours ago
Andrea
asked 20 hours ago
AndreaAndrea
6018
6018
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
Try this to batch load a list of images in a folder:
import bpy
from os.path import join, isfile
from os import listdir
imageObjects = []
imagePath = '/users/you/yourImagePath'
imgFiles = [
join( imagePath, fn ) # Create full paths to images
for fn in listdir( imagePath ) # For each item in the image folder
if isfile( join( imagePath, fn ) ) # If the item is indeed a file
and fn.lower().endswith(('.png','.jpg')) # Which ends with an image suffix (can add more types here if needed)
]
# Load entire list of images
for imgFile in imgFiles:
# Add to image object list to use later
imageObjects.append( bpy.data.images.load( imgFile ) )
# Load a specific index from the list (5th in the list in this example)
imgObj = bpy.data.images.load( imgFiles[4] )
$endgroup$
$begingroup$
ty but i have to load not full image list because have some variable by controlling the loading , i have to know the way by load single image from list. for example the first image of the list and in the second step , load second image.
$endgroup$
– Andrea
19 hours ago
1
$begingroup$
@Andrea see edit and LMK if this is what you meant
$endgroup$
– TLousky
19 hours ago
$begingroup$
Sorry @TLousky in the first time i put name of node with diffuse = nodes.new(type='ShaderNodeTexImage') diffuse.location = (-600,550) diffuse.name = imgFiles[0] now name is all path of image.. in the first time is only image name. an idea?
$endgroup$
– Andrea
18 hours ago
1
$begingroup$
try to replace the imports from os.path and addbasename
. Like this:from os.path import join, isfile, basename
. Then use it in the diffuse.name:diffuse.name = basename(imgFiles[0])
. Basename extracts the filename from a full path.
$endgroup$
– TLousky
18 hours ago
$begingroup$
Work very fine is very usefull, ty
$endgroup$
– Andrea
18 hours ago
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "502"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fblender.stackexchange.com%2fquestions%2f135956%2fbest-way-to-load-image-from-list-python-script%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Try this to batch load a list of images in a folder:
import bpy
from os.path import join, isfile
from os import listdir
imageObjects = []
imagePath = '/users/you/yourImagePath'
imgFiles = [
join( imagePath, fn ) # Create full paths to images
for fn in listdir( imagePath ) # For each item in the image folder
if isfile( join( imagePath, fn ) ) # If the item is indeed a file
and fn.lower().endswith(('.png','.jpg')) # Which ends with an image suffix (can add more types here if needed)
]
# Load entire list of images
for imgFile in imgFiles:
# Add to image object list to use later
imageObjects.append( bpy.data.images.load( imgFile ) )
# Load a specific index from the list (5th in the list in this example)
imgObj = bpy.data.images.load( imgFiles[4] )
$endgroup$
$begingroup$
ty but i have to load not full image list because have some variable by controlling the loading , i have to know the way by load single image from list. for example the first image of the list and in the second step , load second image.
$endgroup$
– Andrea
19 hours ago
1
$begingroup$
@Andrea see edit and LMK if this is what you meant
$endgroup$
– TLousky
19 hours ago
$begingroup$
Sorry @TLousky in the first time i put name of node with diffuse = nodes.new(type='ShaderNodeTexImage') diffuse.location = (-600,550) diffuse.name = imgFiles[0] now name is all path of image.. in the first time is only image name. an idea?
$endgroup$
– Andrea
18 hours ago
1
$begingroup$
try to replace the imports from os.path and addbasename
. Like this:from os.path import join, isfile, basename
. Then use it in the diffuse.name:diffuse.name = basename(imgFiles[0])
. Basename extracts the filename from a full path.
$endgroup$
– TLousky
18 hours ago
$begingroup$
Work very fine is very usefull, ty
$endgroup$
– Andrea
18 hours ago
add a comment |
$begingroup$
Try this to batch load a list of images in a folder:
import bpy
from os.path import join, isfile
from os import listdir
imageObjects = []
imagePath = '/users/you/yourImagePath'
imgFiles = [
join( imagePath, fn ) # Create full paths to images
for fn in listdir( imagePath ) # For each item in the image folder
if isfile( join( imagePath, fn ) ) # If the item is indeed a file
and fn.lower().endswith(('.png','.jpg')) # Which ends with an image suffix (can add more types here if needed)
]
# Load entire list of images
for imgFile in imgFiles:
# Add to image object list to use later
imageObjects.append( bpy.data.images.load( imgFile ) )
# Load a specific index from the list (5th in the list in this example)
imgObj = bpy.data.images.load( imgFiles[4] )
$endgroup$
$begingroup$
ty but i have to load not full image list because have some variable by controlling the loading , i have to know the way by load single image from list. for example the first image of the list and in the second step , load second image.
$endgroup$
– Andrea
19 hours ago
1
$begingroup$
@Andrea see edit and LMK if this is what you meant
$endgroup$
– TLousky
19 hours ago
$begingroup$
Sorry @TLousky in the first time i put name of node with diffuse = nodes.new(type='ShaderNodeTexImage') diffuse.location = (-600,550) diffuse.name = imgFiles[0] now name is all path of image.. in the first time is only image name. an idea?
$endgroup$
– Andrea
18 hours ago
1
$begingroup$
try to replace the imports from os.path and addbasename
. Like this:from os.path import join, isfile, basename
. Then use it in the diffuse.name:diffuse.name = basename(imgFiles[0])
. Basename extracts the filename from a full path.
$endgroup$
– TLousky
18 hours ago
$begingroup$
Work very fine is very usefull, ty
$endgroup$
– Andrea
18 hours ago
add a comment |
$begingroup$
Try this to batch load a list of images in a folder:
import bpy
from os.path import join, isfile
from os import listdir
imageObjects = []
imagePath = '/users/you/yourImagePath'
imgFiles = [
join( imagePath, fn ) # Create full paths to images
for fn in listdir( imagePath ) # For each item in the image folder
if isfile( join( imagePath, fn ) ) # If the item is indeed a file
and fn.lower().endswith(('.png','.jpg')) # Which ends with an image suffix (can add more types here if needed)
]
# Load entire list of images
for imgFile in imgFiles:
# Add to image object list to use later
imageObjects.append( bpy.data.images.load( imgFile ) )
# Load a specific index from the list (5th in the list in this example)
imgObj = bpy.data.images.load( imgFiles[4] )
$endgroup$
Try this to batch load a list of images in a folder:
import bpy
from os.path import join, isfile
from os import listdir
imageObjects = []
imagePath = '/users/you/yourImagePath'
imgFiles = [
join( imagePath, fn ) # Create full paths to images
for fn in listdir( imagePath ) # For each item in the image folder
if isfile( join( imagePath, fn ) ) # If the item is indeed a file
and fn.lower().endswith(('.png','.jpg')) # Which ends with an image suffix (can add more types here if needed)
]
# Load entire list of images
for imgFile in imgFiles:
# Add to image object list to use later
imageObjects.append( bpy.data.images.load( imgFile ) )
# Load a specific index from the list (5th in the list in this example)
imgObj = bpy.data.images.load( imgFiles[4] )
edited 19 hours ago
answered 19 hours ago
TLouskyTLousky
12.3k11950
12.3k11950
$begingroup$
ty but i have to load not full image list because have some variable by controlling the loading , i have to know the way by load single image from list. for example the first image of the list and in the second step , load second image.
$endgroup$
– Andrea
19 hours ago
1
$begingroup$
@Andrea see edit and LMK if this is what you meant
$endgroup$
– TLousky
19 hours ago
$begingroup$
Sorry @TLousky in the first time i put name of node with diffuse = nodes.new(type='ShaderNodeTexImage') diffuse.location = (-600,550) diffuse.name = imgFiles[0] now name is all path of image.. in the first time is only image name. an idea?
$endgroup$
– Andrea
18 hours ago
1
$begingroup$
try to replace the imports from os.path and addbasename
. Like this:from os.path import join, isfile, basename
. Then use it in the diffuse.name:diffuse.name = basename(imgFiles[0])
. Basename extracts the filename from a full path.
$endgroup$
– TLousky
18 hours ago
$begingroup$
Work very fine is very usefull, ty
$endgroup$
– Andrea
18 hours ago
add a comment |
$begingroup$
ty but i have to load not full image list because have some variable by controlling the loading , i have to know the way by load single image from list. for example the first image of the list and in the second step , load second image.
$endgroup$
– Andrea
19 hours ago
1
$begingroup$
@Andrea see edit and LMK if this is what you meant
$endgroup$
– TLousky
19 hours ago
$begingroup$
Sorry @TLousky in the first time i put name of node with diffuse = nodes.new(type='ShaderNodeTexImage') diffuse.location = (-600,550) diffuse.name = imgFiles[0] now name is all path of image.. in the first time is only image name. an idea?
$endgroup$
– Andrea
18 hours ago
1
$begingroup$
try to replace the imports from os.path and addbasename
. Like this:from os.path import join, isfile, basename
. Then use it in the diffuse.name:diffuse.name = basename(imgFiles[0])
. Basename extracts the filename from a full path.
$endgroup$
– TLousky
18 hours ago
$begingroup$
Work very fine is very usefull, ty
$endgroup$
– Andrea
18 hours ago
$begingroup$
ty but i have to load not full image list because have some variable by controlling the loading , i have to know the way by load single image from list. for example the first image of the list and in the second step , load second image.
$endgroup$
– Andrea
19 hours ago
$begingroup$
ty but i have to load not full image list because have some variable by controlling the loading , i have to know the way by load single image from list. for example the first image of the list and in the second step , load second image.
$endgroup$
– Andrea
19 hours ago
1
1
$begingroup$
@Andrea see edit and LMK if this is what you meant
$endgroup$
– TLousky
19 hours ago
$begingroup$
@Andrea see edit and LMK if this is what you meant
$endgroup$
– TLousky
19 hours ago
$begingroup$
Sorry @TLousky in the first time i put name of node with diffuse = nodes.new(type='ShaderNodeTexImage') diffuse.location = (-600,550) diffuse.name = imgFiles[0] now name is all path of image.. in the first time is only image name. an idea?
$endgroup$
– Andrea
18 hours ago
$begingroup$
Sorry @TLousky in the first time i put name of node with diffuse = nodes.new(type='ShaderNodeTexImage') diffuse.location = (-600,550) diffuse.name = imgFiles[0] now name is all path of image.. in the first time is only image name. an idea?
$endgroup$
– Andrea
18 hours ago
1
1
$begingroup$
try to replace the imports from os.path and add
basename
. Like this: from os.path import join, isfile, basename
. Then use it in the diffuse.name: diffuse.name = basename(imgFiles[0])
. Basename extracts the filename from a full path.$endgroup$
– TLousky
18 hours ago
$begingroup$
try to replace the imports from os.path and add
basename
. Like this: from os.path import join, isfile, basename
. Then use it in the diffuse.name: diffuse.name = basename(imgFiles[0])
. Basename extracts the filename from a full path.$endgroup$
– TLousky
18 hours ago
$begingroup$
Work very fine is very usefull, ty
$endgroup$
– Andrea
18 hours ago
$begingroup$
Work very fine is very usefull, ty
$endgroup$
– Andrea
18 hours ago
add a comment |
Thanks for contributing an answer to Blender Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fblender.stackexchange.com%2fquestions%2f135956%2fbest-way-to-load-image-from-list-python-script%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown