I'm trying to deploy BIC algorithm (border/interior pixel classify) and using PIL (python imaging library) to process image . But i don't know how to quantize RGB color from 24bit (8bit per color) to 6 bit (2bit per color) by using PIL . Anyone can tell me how to do it by PIL or another python library such as Opencv , pythonmagick...?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
the PIL ImageOps posterize (scroll down to posterize) function should do this for you. |
|||
|
|
red >>= 6; green >>= 6; blue >>= 6– agf Sep 22 '11 at 10:45Read the FAQs3) When you see good Q&A, vote them up byusing the gray triangles, as the credibility of the system is based on the reputation that users gain by sharing their knowledge. Also remember to accept the answer that better solves your problem, if any,by pressing the checkmark sign– belisarius Sep 23 '11 at 0:59