122 lines
2.9 KiB
C#
122 lines
2.9 KiB
C#
|
|
using OpenCVForUnity.CoreModule;
|
|
using OpenCVForUnity.UtilsModule;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace OpenCVForUnity.PhotoModule
|
|
{
|
|
|
|
// C++: class Tonemap
|
|
/**
|
|
* Base class for tonemapping algorithms - tools that are used to map HDR image to 8-bit range.
|
|
*/
|
|
|
|
public class Tonemap : Algorithm
|
|
{
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
|
|
try
|
|
{
|
|
if (disposing)
|
|
{
|
|
}
|
|
if (IsEnabledDispose)
|
|
{
|
|
if (nativeObj != IntPtr.Zero)
|
|
photo_Tonemap_delete(nativeObj);
|
|
nativeObj = IntPtr.Zero;
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
}
|
|
|
|
protected internal Tonemap(IntPtr addr) : base(addr) { }
|
|
|
|
// internal usage only
|
|
public static new Tonemap __fromPtr__(IntPtr addr) { return new Tonemap(addr); }
|
|
|
|
//
|
|
// C++: void cv::Tonemap::process(Mat src, Mat& dst)
|
|
//
|
|
|
|
/**
|
|
* Tonemaps image
|
|
*
|
|
* param src source image - CV_32FC3 Mat (float 32 bits 3 channels)
|
|
* param dst destination image - CV_32FC3 Mat with values in [0, 1] range
|
|
*/
|
|
public void process(Mat src, Mat dst)
|
|
{
|
|
ThrowIfDisposed();
|
|
if (src != null) src.ThrowIfDisposed();
|
|
if (dst != null) dst.ThrowIfDisposed();
|
|
|
|
photo_Tonemap_process_10(nativeObj, src.nativeObj, dst.nativeObj);
|
|
|
|
|
|
}
|
|
|
|
|
|
//
|
|
// C++: float cv::Tonemap::getGamma()
|
|
//
|
|
|
|
public float getGamma()
|
|
{
|
|
ThrowIfDisposed();
|
|
|
|
return photo_Tonemap_getGamma_10(nativeObj);
|
|
|
|
|
|
}
|
|
|
|
|
|
//
|
|
// C++: void cv::Tonemap::setGamma(float gamma)
|
|
//
|
|
|
|
public void setGamma(float gamma)
|
|
{
|
|
ThrowIfDisposed();
|
|
|
|
photo_Tonemap_setGamma_10(nativeObj, gamma);
|
|
|
|
|
|
}
|
|
|
|
|
|
#if (UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR
|
|
const string LIBNAME = "__Internal";
|
|
#else
|
|
const string LIBNAME = "opencvforunity";
|
|
#endif
|
|
|
|
|
|
|
|
// C++: void cv::Tonemap::process(Mat src, Mat& dst)
|
|
[DllImport(LIBNAME)]
|
|
private static extern void photo_Tonemap_process_10(IntPtr nativeObj, IntPtr src_nativeObj, IntPtr dst_nativeObj);
|
|
|
|
// C++: float cv::Tonemap::getGamma()
|
|
[DllImport(LIBNAME)]
|
|
private static extern float photo_Tonemap_getGamma_10(IntPtr nativeObj);
|
|
|
|
// C++: void cv::Tonemap::setGamma(float gamma)
|
|
[DllImport(LIBNAME)]
|
|
private static extern void photo_Tonemap_setGamma_10(IntPtr nativeObj, float gamma);
|
|
|
|
// native support for java finalize()
|
|
[DllImport(LIBNAME)]
|
|
private static extern void photo_Tonemap_delete(IntPtr nativeObj);
|
|
|
|
}
|
|
}
|