Loading...
Processing Forum
Recent Topics
All Forums
Screen name:
tiatordos
tiatordos's Profile
1
Posts
0
Responses
0
Followers
Activity Trend
Last 30 days
Last 30 days
Date Interval
From Date :
To Date :
Go
Loading Chart...
Posts
Responses
PM
Show:
All
Discussions
Questions
Expanded view
List view
Private Message
OpenCV bilateral Filter
[0 Replies]
06-Nov-2012 08:59 AM
Forum:
Contributed Library Questions
Hi all:
I'm trying to implement a billateral filter using openCV library, but cant´figure the way the paramters work
and it seems the documentation does not fits with the implementation.
import hypermedia.video.*;
OpenCV opencv;
void setup() {
opencv = new OpenCV(this);
opencv.allocate(640, 480);
opencv.loadImage("imagen2.jpg");
size(2*640, 480);
}
void draw() {
image(opencv.image(),0, 0);
opencv.blur( OpenCV.BILATERAL,1000,1000,0,0 );
//seems to do the same as
// opencv.blur( OpenCV.BILATERAL,1000,0,1000,1000 );
image(opencv.image(),640, 0);
opencv.restore();
}
thanks in advantage
«Prev
Next »
Moderate user : tiatordos
Forum