Related to image utilities

I invite all the extension developers to have a kind look at my request.

Image Utilities Extension

  • Can you make something like magic colour in camscanner?
  • And it can also have other features such as brightness, contrast, hue filter, enhance colour, sepia tuning etc.
  • If possible make it such that it can work while offline, but the online version will suffice too,
  • Take reference from Google’s Snapseed if you want to add more functionality.
  • Please Note: It must load images ASYNC.
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;

public class AdaptiveThresh {
   public static void main(String args[\*]) throws Exception {
      // Loading the OpenCV core library
      System.loadLibrary( Core.NATIVE_LIBRARY_NAME );

      // Reading the Image from the file and storing it in to a Matrix object
      String file ="E:/OpenCV/chap14/thresh_input.jpg";
      
      // Reading the image
      Mat src = Imgcodecs.imread(file,0);

      // Creating an empty matrix to store the result
      Mat dst = new Mat();

      Imgproc.adaptiveThreshold(src, dst, 125, Imgproc.ADAPTIVE_THRESH_MEAN_C,
         Imgproc.THRESH_BINARY, 11, 12);

      // Writing the image
      Imgcodecs.imwrite("E:/OpenCV/chap14/Adaptivemean_thresh_binary.jpg", dst);

      System.out.println("Image Processed");
   } 
}
1 Like

This topic hasn’t received a reply in 2 days so i am posting again to ask if anyone is willing to make such extension.

1 Like

Is that your code? Dont post it without credit.

I found it somewhere on the internet. But, I can not find it again. I just gave the code to help someone willing to make it. 'Sorry.

post the code in
image
tags

1 Like

Coming Soon

In this feature in my extension

3 Likes

1 Like

Great work! :smile: :+1:
Thank You too. Will it be free?

Also make sure that it is Async

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.