org.bytedeco.javacv.ImageTransformerCL Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javacv Show documentation
Show all versions of javacv Show documentation
Java interface to OpenCV, FFmpeg, and more
/*
* Copyright (C) 2009-2012 Samuel Audet
*
* Licensed either under the Apache License, Version 2.0, or (at your option)
* under the terms of the GNU General Public License as published by
* the Free Software Foundation (subject to the "Classpath" exception),
* either version 2, or any later version (collectively, the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
* http://www.gnu.org/licenses/
* http://www.gnu.org/software/classpath/license.html
*
* or as provided in the LICENSE.txt file that accompanied this code.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.bytedeco.javacv;
import com.jogamp.opencl.CLBuffer;
import com.jogamp.opencl.CLImage2d;
import java.nio.ByteBuffer;
import java.nio.FloatBuffer;
/**
*
* @author Samuel Audet
*/
public interface ImageTransformerCL extends ImageTransformer {
public class InputData {
public InputData() { this(true); }
public InputData(boolean autoWrite) { this.autoWrite = autoWrite; }
public int pyramidLevel = 0;
public int roiX = 0, roiY = 0, roiWidth = 0, roiHeight = 0;
public double zeroThreshold = 0, outlierThreshold = 0;
CLBuffer buffer = null;
boolean autoWrite = true;
CLBuffer getBuffer(JavaCVCL context) {
int structSize = 4*4;
if (buffer == null || buffer.getCLSize() < structSize) {
if (buffer != null) buffer.release();
buffer = context.getCLContext().createByteBuffer(structSize, CLBuffer.Mem.READ_ONLY);
}
return buffer;
}
public CLBuffer writeBuffer(JavaCVCL context) {
getBuffer(context);
ByteBuffer byteBuffer = (ByteBuffer)buffer.getBuffer().rewind();
byteBuffer.putInt(roiY).putInt(roiHeight).putFloat((float)zeroThreshold)
.putFloat((float)outlierThreshold).rewind();
context.writeBuffer(buffer, false); // upload input data
return buffer;
}
}
public class OutputData {
public OutputData() { this(true); }
public OutputData(boolean autoRead) { this.autoRead = autoRead; }
public int dstCount = 0, dstCountZero = 0, dstCountOutlier = 0;
public FloatBuffer srcDstDot = null, dstDstDot = null;
CLBuffer buffer = null;
boolean autoRead = true;
CLBuffer getBuffer(JavaCVCL context, int dotSize, int reduceSize) {
int structSize = 4*(4 + dotSize + dotSize*dotSize);
if (buffer == null || buffer.getCLSize() < structSize*reduceSize) {
if (buffer != null) buffer.release();
buffer = context.getCLContext().createByteBuffer(structSize*reduceSize);
ByteBuffer byteBuffer = buffer.getBuffer();
byteBuffer.position(4*4); srcDstDot = byteBuffer.asFloatBuffer();
byteBuffer.position(4*(4 + dotSize)); dstDstDot = byteBuffer.asFloatBuffer();
byteBuffer.rewind();
}
return buffer;
}
public CLBuffer readBuffer(JavaCVCL context) {
//getBuffer(context, dotSize, reduceSize);
context.readBuffer(buffer, true); // read results back (blocking read)
ByteBuffer byteBuffer = buffer.getBuffer();
dstCount = byteBuffer.getInt(4);
dstCountZero = byteBuffer.getInt(8);
dstCountOutlier = byteBuffer.getInt(12);
return buffer;
}
}
JavaCVCL getContext();
void transform(CLImage2d srcImg, CLImage2d subImg, CLImage2d srcDotImg, CLImage2d transImg, CLImage2d dstImg,
CLImage2d mask, ImageTransformer.Parameters[] parameters, boolean[] inverses, InputData inputData, OutputData outputData);
}