Hey, I've noticed there is an undocumented unstructured encoding method. I've tried it out, and it looks like it would consume a lot of memory to decode. Anything above 100 x 100 pixel does not seem practical on my machine
import structuredlight as sl
import matplotlib.pyplot as plt
us = sl.Unstructured()
imlist_pattern = us.generate((100,100), 10, 32)
res = us.decode( imlist_pattern, imlist_pattern )
plt.imshow( res[0] )
Would you share some insights if this method is useful for any real projector sizes like 1920x1080 at all? It seems the memory needed for decoding would be quite excessive.
Also, in any of the other decoding methods, what would you normally recommend?
Hey, I've noticed there is an undocumented
unstructuredencoding method. I've tried it out, and it looks like it would consume a lot of memory to decode. Anything above 100 x 100 pixel does not seem practical on my machineWould you share some insights if this method is useful for any real projector sizes like 1920x1080 at all? It seems the memory needed for decoding would be quite excessive.
Also, in any of the other decoding methods, what would you normally recommend?