Shinya Kitaoka 810553
#pragma once
Shinya Kitaoka 810553
Toshihiro Shimizu 890ddd
#ifndef igs_hsv_noise_h
Toshihiro Shimizu 890ddd
#define igs_hsv_noise_h
Toshihiro Shimizu 890ddd
Toshihiro Shimizu 890ddd
#ifndef IGS_HSV_NOISE_EXPORT
Toshihiro Shimizu 890ddd
#define IGS_HSV_NOISE_EXPORT
Toshihiro Shimizu 890ddd
#endif
Toshihiro Shimizu 890ddd
Shinya Kitaoka 120a6e
namespace igs {
Shinya Kitaoka 120a6e
namespace hsv_noise {
Toshihiro Shimizu 890ddd
IGS_HSV_NOISE_EXPORT void change(
shun-iwasawa 481b59
    float *image_array, const int height, const int width, const int channels,
shun-iwasawa 481b59
    const float *ref, /* 求める画像と同じ高、幅 */
Shinya Kitaoka 120a6e
    /* image_arrayに余白が変化してもノイズパターンが変わらない
Shinya Kitaoka 120a6e
            ようにするためにカメラエリアを指定する */
Shinya Kitaoka 120a6e
    const int camera_x, const int camera_y, const int camera_w,
shun-iwasawa 481b59
    const int camera_h, const double hue_range, /* =0.025  0 ... 1.0 */
shun-iwasawa 481b59
    const double sat_range,                     /* =0.0	   0 ... 1.0 */
shun-iwasawa 481b59
    const double val_range,                     /* =0.035  0 ... 1.0 */
shun-iwasawa 481b59
    const double alp_range,                     /* =0.0    0 ... 1.0 */
shun-iwasawa 481b59
    const unsigned long random_seed,            /* =1	   0 ... ULONG_MAX */
shun-iwasawa 481b59
    const double near_blur,                     /* =0.500  0 ... 0.5 */
shun-iwasawa 481b59
    const double sat_effective,                 /* =0.0	   0 ... 1.0 */
shun-iwasawa 481b59
    const double sat_center,                    /* =0.5	   0 ... 1.0 */
shun-iwasawa 481b59
    const int sat_type,                         /* =0
shun-iwasawa 481b59
                             0(shift_whole),1(shift_term),2(decrease_whole),3(decrease_term) */
shun-iwasawa 481b59
    const double val_effective,                 /* =0.0	   0 ... 1.0 */
shun-iwasawa 481b59
    const double val_center,                    /* =0.5	   0 ... 1.0 */
shun-iwasawa 481b59
    const int val_type,                         /* =0
shun-iwasawa 481b59
                             0(shift_whole),1(shift_term),2(decrease_whole),3(decrease_term) */
shun-iwasawa 481b59
    const double alp_effective,                 /* =0.0	   0 ... 1.0 */
shun-iwasawa 481b59
    const double alp_center,                    /* =0.5	   0 ... 1.0 */
shun-iwasawa 481b59
    const int alp_type,                         /* =0
shun-iwasawa 481b59
                             0(shift_whole),1(shift_term),2(decrease_whole),3(decrease_term) */
Shinya Kitaoka 120a6e
    const bool add_blend_sw
Shinya Kitaoka 120a6e
    /* 効果(変化量)をアルファブレンドするか否かのスイッチ
Shinya Kitaoka 120a6e
                add_blend_sw == true
Shinya Kitaoka 120a6e
                    アルファ値によりRGBの変化量を調整する
Shinya Kitaoka 120a6e
                    合成方法が
Shinya Kitaoka 120a6e
                            合成画 = 下絵 * (1 - alpha) + 上絵
Shinya Kitaoka 120a6e
                    の場合こちらを使う
Shinya Kitaoka 120a6e
                add_blend_sw == false
Shinya Kitaoka 120a6e
                    アルファ値に関係なくRGBが変化する
Shinya Kitaoka 120a6e
                    合成方法が
Shinya Kitaoka 120a6e
                            合成画 = 下絵 * (1 - alpha) + 上絵 * alpha
Shinya Kitaoka 120a6e
                    の場合こちらを使う
Shinya Kitaoka 120a6e
            */
shun-iwasawa 481b59
);
Toshihiro Shimizu 890ddd
}
shun-iwasawa 481b59
}  // namespace igs
Toshihiro Shimizu 890ddd
Toshihiro Shimizu 890ddd
#endif /* !igs_hsv_noise_h */