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













1












$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]) <----?









share|improve this question











$endgroup$
















    1












    $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]) <----?









    share|improve this question











    $endgroup$














      1












      1








      1





      $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]) <----?









      share|improve this question











      $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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 19 hours ago







      Andrea

















      asked 20 hours ago









      AndreaAndrea

      6018




      6018




















          1 Answer
          1






          active

          oldest

          votes


















          3












          $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] )





          share|improve this answer











          $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 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











          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
          );



          );













          draft saved

          draft discarded


















          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









          3












          $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] )





          share|improve this answer











          $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 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















          3












          $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] )





          share|improve this answer











          $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 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













          3












          3








          3





          $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] )





          share|improve this answer











          $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] )






          share|improve this answer














          share|improve this answer



          share|improve this answer








          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 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$
            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 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$
          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

















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Circuit construction for execution of conditional statements using least significant bitHow are two different registers being used as “control”?How exactly is the stated composite state of the two registers being produced using the $R_zz$ controlled rotations?Efficiently performing controlled rotations in HHLWould this quantum algorithm implementation work?How to prepare a superposed states of odd integers from $1$ to $sqrtN$?Why is this implementation of the order finding algorithm not working?Circuit construction for Hamiltonian simulationHow can I invert the least significant bit of a certain term of a superposed state?Implementing an oracleImplementing a controlled sum operation

          Magento 2 “No Payment Methods” in Admin New OrderHow to integrate Paypal Express Checkout with the Magento APIMagento 1.5 - Sales > Order > edit order and shipping methods disappearAuto Invoice Check/Money Order Payment methodAdd more simple payment methods?Shipping methods not showingWhat should I do to change payment methods if changing the configuration has no effects?1.9 - No Payment Methods showing upMy Payment Methods not Showing for downloadable/virtual product when checkout?Magento2 API to access internal payment methodHow to call an existing payment methods in the registration form?