Is there a way to convert IplImage pointer to float pointer? Basically converting the imagedata to float. Appreciate any help on this.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use E.g.
|
|||
|
|
|
|||
|
|
|
You can't convert the image to float by simply casting the pointer. You need to loop over every pixel and calculate the new value. Note that most float image types assume a range of 0-1 so you need to divide each pixel by whatever you want the maximum to be. |
|||
|
|
