tahoma2d/toonz/sources/stdfx/igs_level_auto_in_camera.h

38 lines
803 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef igs_level_auto_in_camera_h
#define igs_level_auto_in_camera_h
#ifndef IGS_LEVEL_AUTO_IN_CAMERA_EXPORT
#define IGS_LEVEL_AUTO_IN_CAMERA_EXPORT
#endif
2016-06-15 18:43:10 +12:00
namespace igs {
namespace level_auto_in_camera {
2016-03-19 06:57:51 +13:00
IGS_LEVEL_AUTO_IN_CAMERA_EXPORT void change(
2016-06-15 18:43:10 +12:00
void *image_array
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
,
const int height, const int width, const int channels, const int bits
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
,
const bool *act_sw // true(false/true)
,
const double *in_min_shift // 0(-1...1)
,
const double *in_max_shift // 0(-1...1)
,
const double *out_min // 0(0...1)
,
const double *out_max // 1(0...1)
,
const double *gamma // 1(0.01...100)
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
,
const int camera_x, const int camera_y, const int camera_w,
const int camera_h);
2016-03-19 06:57:51 +13:00
}
}
#endif /* !igs_level_auto_in_camera_h */