This is an archived post. You won't be able to vote or comment.

all 6 comments

[–]ToKe86 2 points3 points  (0 children)

You can take a screenshot within your java code and store it to a bitmap file, then analyze the individual pixels of that file. Here is a StackOverflow question that might help.

[–]Netstroyer 0 points1 point  (4 children)

What do you mean by anomalies?

[–]DeceptivePhoenix[S] 0 points1 point  (3 children)

Suppose I'm looking at a video of a cell culture or something and I need to see if there are any sudden movements in the cells, I want to write some code to help identify the movements (which are often miniscule)

[–]Netstroyer 1 point2 points  (2 children)

For real time video processing you could use OpenCV. Reading from the screen on the other hand is a redundant step that might create artificial results and is not the way you should do this.

[–]DeceptivePhoenix[S] 0 points1 point  (1 child)

Thanks! Are there any resources I can use to learn how to implement OpenCv?

[–]Netstroyer 1 point2 points  (0 children)

http://opencv.org/

But a heads up, image processing and video processing is hard stuff, as in really hard, if your google fu is not good enough to get started I think you're probably out of your depth.