bytedeco / javacpp

The missing bridge between Java and native C++
Other
4.48k stars 582 forks source link

is there any module similar to opencv imgcodecs? #692

Closed thisames closed 1 year ago

thisames commented 1 year ago

in my android project, I had an old version of java (I believe) and inside it there was a cpp module, in which I could use several cpp methods.

Captura de tela de 2023-07-04 13-46-07

I'm updating everything to the current versions and I realize that this cpp module no longer exists.

I researched recent projects and noticed that in some cases developers are using the imports below to import the methods I'm looking for.

import static org.bytedeco.opencv.helper.opencv_imgcodecs.cvLoadImage; or *import static org.bytedeco.javacpp.opencv_imgproc.;**

Captura de tela de 2023-07-04 13-49-10

however I am not able to find any version that syncs with my android and that actually has these modules below is the versions and dependency in my android project.

Captura de tela de 2023-07-04 13-49-31

improving my question, after all how can I use the cvLoadImage method in my android project?

saudet commented 1 year ago

cvLoadImage() is still available here: http://bytedeco.org/javacpp-presets/opencv/apidocs/org/bytedeco/opencv/helper/opencv_imgcodecs.html#cvLoadImage-java.lang.String-

thisames commented 1 year ago

cvLoadImage() is still available here: http://bytedeco.org/javacpp-presets/opencv/apidocs/org/bytedeco/opencv/helper/opencv_imgcodecs.html#cvLoadImage-java.lang.String-

it worked for me, thanks!