Best way to load image from list python script2019 Community Moderator Election Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) 2019 Moderator Election Q&A - QuestionnaireSave 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

In musical terms, what properties are varied by the human voice to produce different words / syllables?

Is openssl rand command cryptographically secure?

I can't produce songs

If Windows 7 doesn't support WSL, then what is "Subsystem for UNIX-based Applications"?

Why is a lens darker than other ones when applying the same settings?

A proverb that is used to imply that you have unexpectedly faced a big problem

Is multiple magic items in one inherently imbalanced?

What is the origin of 落第?

New Order #6: Easter Egg

How can a team of shapeshifters communicate?

What are the main differences between the original Stargate SG-1 and the Final Cut edition?

Is there public access to the Meteor Crater in Arizona?

How does light 'choose' between wave and particle behaviour?

Special flights

Project Euler #1 in C++

Why are vacuum tubes still used in amateur radios?

Random body shuffle every night—can we still function?

How can I prevent/balance waiting and turtling as a response to cooldown mechanics

Can an iPhone 7 be made to function as a NFC Tag?

Did any compiler fully use 80-bit floating point?

How can I save and copy a screenhot at the same time?

Why datecode is SO IMPORTANT to chip manufacturers?

What does it mean that physics no longer uses mechanical models to describe phenomena?

Is there hard evidence that the grant peer review system performs significantly better than random?



Best way to load image from list python script



2019 Community Moderator Election
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
2019 Moderator Election Q&A - QuestionnaireSave 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



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








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 Apr 2 at 8:54







      Andrea

















      asked Apr 2 at 8:20









      AndreaAndrea

      6019




      6019




















          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
            Apr 2 at 8:48






          • 1




            $begingroup$
            @Andrea see edit and LMK if this is what you meant
            $endgroup$
            – TLousky
            Apr 2 at 8:57










          • $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
            Apr 2 at 9:25






          • 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
            Apr 2 at 9:34










          • $begingroup$
            Work very fine is very usefull, ty
            $endgroup$
            – Andrea
            Apr 2 at 9:41











          Your Answer








          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
            Apr 2 at 8:48






          • 1




            $begingroup$
            @Andrea see edit and LMK if this is what you meant
            $endgroup$
            – TLousky
            Apr 2 at 8:57










          • $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
            Apr 2 at 9:25






          • 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
            Apr 2 at 9:34










          • $begingroup$
            Work very fine is very usefull, ty
            $endgroup$
            – Andrea
            Apr 2 at 9:41















          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
            Apr 2 at 8:48






          • 1




            $begingroup$
            @Andrea see edit and LMK if this is what you meant
            $endgroup$
            – TLousky
            Apr 2 at 8:57










          • $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
            Apr 2 at 9:25






          • 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
            Apr 2 at 9:34










          • $begingroup$
            Work very fine is very usefull, ty
            $endgroup$
            – Andrea
            Apr 2 at 9:41













          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 Apr 2 at 8:56

























          answered Apr 2 at 8:41









          TLouskyTLousky

          12.3k11951




          12.3k11951











          • $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
            Apr 2 at 8:48






          • 1




            $begingroup$
            @Andrea see edit and LMK if this is what you meant
            $endgroup$
            – TLousky
            Apr 2 at 8:57










          • $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
            Apr 2 at 9:25






          • 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
            Apr 2 at 9:34










          • $begingroup$
            Work very fine is very usefull, ty
            $endgroup$
            – Andrea
            Apr 2 at 9:41
















          • $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
            Apr 2 at 8:48






          • 1




            $begingroup$
            @Andrea see edit and LMK if this is what you meant
            $endgroup$
            – TLousky
            Apr 2 at 8:57










          • $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
            Apr 2 at 9:25






          • 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
            Apr 2 at 9:34










          • $begingroup$
            Work very fine is very usefull, ty
            $endgroup$
            – Andrea
            Apr 2 at 9:41















          $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
          Apr 2 at 8:48




          $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
          Apr 2 at 8:48




          1




          1




          $begingroup$
          @Andrea see edit and LMK if this is what you meant
          $endgroup$
          – TLousky
          Apr 2 at 8:57




          $begingroup$
          @Andrea see edit and LMK if this is what you meant
          $endgroup$
          – TLousky
          Apr 2 at 8:57












          $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
          Apr 2 at 9:25




          $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
          Apr 2 at 9:25




          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
          Apr 2 at 9:34




          $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
          Apr 2 at 9:34












          $begingroup$
          Work very fine is very usefull, ty
          $endgroup$
          – Andrea
          Apr 2 at 9:41




          $begingroup$
          Work very fine is very usefull, ty
          $endgroup$
          – Andrea
          Apr 2 at 9:41

















          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

          Triangular numbers and gcdProving sum of a set is $0 pmod n$ if $n$ is odd, or $fracn2 pmod n$ if $n$ is even?Is greatest common divisor of two numbers really their smallest linear combination?GCD, LCM RelationshipProve a set of nonnegative integers with greatest common divisor 1 and closed under addition has all but finite many nonnegative integers.all pairs of a and b in an equation containing gcdTriangular Numbers Modulo $k$ - Hit All Values?Understanding the Existence and Uniqueness of the GCDGCD and LCM with logical symbolsThe greatest common divisor of two positive integers less than 100 is equal to 3. Their least common multiple is twelve times one of the integers.Suppose that for all integers $x$, $x|a$ and $x|b$ if and only if $x|c$. Then $c = gcd(a,b)$Which is the gcd of 2 numbers which are multiplied and the result is 600000?

          Ingelân Ynhâld Etymology | Geografy | Skiednis | Polityk en bestjoer | Ekonomy | Demografy | Kultuer | Klimaat | Sjoch ek | Keppelings om utens | Boarnen, noaten en referinsjes Navigaasjemenuwww.gov.ukOffisjele webside fan it regear fan it Feriene KeninkrykOffisjele webside fan it Britske FerkearsburoNederlânsktalige ynformaasje fan it Britske FerkearsburoOffisjele webside fan English Heritage, de organisaasje dy't him ynset foar it behâld fan it Ingelske kultuergoedYnwennertallen fan alle Britske stêden út 'e folkstelling fan 2011Notes en References, op dizze sideEngland

          Հադիս Բովանդակություն Անվանում և նշանակություն | Դասակարգում | Աղբյուրներ | Նավարկման ցանկ