|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
| Thread Tools | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Vision Targeting: Dilate
Is there an equivalent of the openCv structure element "dilate" in Java's version of NIVision?
|
|
#2
|
|||
|
|||
|
Re: Vision Targeting: Dilate
The Dilate is an input to Morphology function.
Specifically, the imaqMorphology function or the imaqGrayMorphology function if the image is still grayscale will take in a method that can be dilate. I don't know if that is wrapped for Java. Greg McKaskle |
|
#3
|
||||
|
||||
|
Re: Vision Targeting: Dilate
Anyone? We need it to detect hot goals
E/ i found this in NIVision.java Code:
//============================================================================
// Morphology functions
//============================================================================
//IMAQ_FUNC int IMAQ_STDCALL imaqGrayMorphology(Image* dest, Image* source, MorphologyMethod method, const StructuringElement* structuringElement);
I'm going to see if i can rewrap this E/ my copy of windriver has no license -_- E/ found them here http://zone.ni.com/reference/en-XX/h...raymorphology/ E/ for open sourcing purposes, here is NIVision.dilate(). If anyone knows how to remove the while loop and convert the 0 into a [count][count], LMK. If you want to use this, you have to rebuild the wpi libraries and add this in image/NIVision.java Code:
private static final int FN_DILATE = 2;
private static final BlockingFunction imaqGrayMorphologyFn = NativeLibrary.getDefaultInstance().getBlockingFunction("imaqGrayMorphology");
static { imaqGrayMorphologyFn.setTaskExecutor(taskExecutor); }
public static void dilate(Pointer dest, Pointer source, int count) throws NIVisionException {
assertCleanStatus(imaqGrayMorphologyFn.call4(dest.address().toUWord().toPrimitive(),
source.address().toUWord().toPrimitive(),
FN_DILATE,
0));
if(--count > 0){
while(count --> 0){
assertCleanStatus(imaqGrayMorphologyFn.call4(dest.address().toUWord().toPrimitive(),
dest.address().toUWord().toPrimitive(),
FN_DILATE,
0));
}
}
}
Last edited by Arhowk : 03-15-2014 at 07:44 PM. |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|