03-13-2025 01:48 PM
Hello,
I am trying to understand some programming and thresholding. I have an image (attached) that I want to convert to 8 bit binary (0-black and 255-white pixel intensities only) but I want to use manual loops and not the available vi's so I can understand the process and manipulate it in my way. I tried doing somethings but seems like it does not work properly. Can somebody please help and let me know how to perform thresholding using manual loops in LabVIEW?
The other reason to do this is I tried using thresholding vi and converted an image to binary (0 and 255) but after I saved the file, it was not binary with only blacks and whites anymore. It has some grey pixels too so the system did not save the binary image as binary. I would also like to learn how to force the system to save the pixels as only 0 and 255 even if they are not?
Thanks
Solved! Go to Solution.
03-13-2025 05:07 PM - edited 03-13-2025 05:08 PM
Your output image will turn black for all pixels that are >100 and keep their values otherwise. Maybe you want to swap your cases and either output a zero or a 255, depending on the comparison.
Here's what I would do. Arguably quite a bit simpler 😄
03-14-2025 09:46 AM
I was able to make my program work with minor corrections/edits.
I tried your suggestion too but I wasn't able to make it work. I am still new so I may have made some mistakes in trying your suggested idea. Thank you for the suggestion.
03-14-2025 10:13 AM
Both should work exactly the same, but with simpler code there are many fewer places for bugs to hide. Can you show us what you did?
03-14-2025 10:19 AM
Yes sure I can share. Below program is doing what I was trying to achieve and understand. I do have one more question that I am going to post separately in a new thread.
03-14-2025 10:28 AM
03-14-2025 10:37 AM - edited 03-14-2025 10:38 AM
@VeMo wrote:
Yes sure I can share. Below program is doing what I was trying to achieve and understand. I do have one more question that I am going to post separately in a new thread.
There are some glaring overcomplications with your code.
03-14-2025 12:22 PM
Thank you for your suggestions. I learned now two new ways to approach the same thing and use the best possible method.
I am going to post another thread now which is what I am after in manipulating a simple image of a circle but with some noise around it.