mWater / mWater-Android-App

An Android App that snaps a picture of a petrifilm, counts the bacteria and posts the counts on a server for the mWater project
https://github.com/AndroidImageProcessing
GNU General Public License v3.0
24 stars 16 forks source link

Take a fresh look at the way we have broken up the image processing functions #68

Open cesine opened 12 years ago

cesine commented 12 years ago

create new issues for the sub-functions in the image processing pipeline when you are done so that we can divide up the sub processing

arichiardi commented 12 years ago

Technical question:

processFrame(byte[] data, Bitmap bitmap);

This function in Java send a data byte buffer and a Bitmap object. I just want the confirmation that the Bitmap buffer is filled by the C++ native code as I can see a:

canvas.drawBitmap(bmp, ...)

That writes that bitmap in the camera preview canvas.

Thank you!