First time here? Check out the FAQ!

Ask Your Question
1

Clahe implemenation in java

asked Jan 29 '14

ssb gravatar image

updated Oct 25 '0

how does CLAHE is implemented through opencv java..the constructor of CLAHE class consists long parameter Don't have idea how to implement it. What does it addresses.? opencv docs doesn't consists Constructor summary it want to implement it to adjust automatically contrast and brightness of real time images from video Thanx for help in advance

Preview: (hide)

1 answer

Sort by » oldest newest most voted
3

answered Jan 29 '14

berak gravatar image

updated Jan 29 '14

oh dear, i'm afraid, you can't use it out-of-the-box from java

the long story goes like this : the c++ api is using a factory function, createCLAHE(), which returns a cv::Ptr<clahe>. unfortunately the java wrappers can't handle those smartpointers, and skip anything that returns them. ( there's a few other classes, like the facerecognition, that suffer from that problem, too ).

so, unless you go the jni way and work around that on your own, you won't be able to construct a CLAHE object in java.

Preview: (hide)

Comments

ok thanx for your answer..but may i know any other possible way to adjust contrast and brightness on set of images??

ssb gravatar imagessb (Jan 30 '14)edit

http://docs.opencv.org/java/org/opencv/imgproc/Imgproc.html#equalizeHist(org.opencv.core.Mat,%20org.opencv.core.Mat)

but again, that's global

berak gravatar imageberak (Jan 30 '14)edit

yaa i have implemented that but it doesnt helped me when images taken in dark light

ssb gravatar imagessb (Jan 31 '14)edit
2

Should work now for 3.0-rc: javadoc

mshabunin gravatar imagemshabunin (Apr 27 '15)edit

Question Tools

Stats

Asked: Jan 29 '14

Seen: 1,767 times

Last updated: Jan 29 '14