Toshihiro Shimizu 890ddd
#ifndef igs_line_blur_h
Toshihiro Shimizu 890ddd
#define igs_line_blur_h
Toshihiro Shimizu 890ddd
Toshihiro Shimizu 890ddd
#ifndef IGS_LINE_BLUR_EXPORT
Toshihiro Shimizu 890ddd
#define IGS_LINE_BLUR_EXPORT
Toshihiro Shimizu 890ddd
#endif
Toshihiro Shimizu 890ddd
Shinya Kitaoka 120a6e
namespace igs {
Shinya Kitaoka 120a6e
namespace line_blur {
Toshihiro Shimizu 890ddd
IGS_LINE_BLUR_EXPORT void convert(
Shinya Kitaoka 120a6e
    /* 入出力画像 */
shun-iwasawa 914f66
    const void *in,    // no_margin
shun-iwasawa 914f66
    void *out,         // no_margin
shun-iwasawa 914f66
    const int height,  // no_margin
shun-iwasawa 914f66
    const int width,   // no_margin
shun-iwasawa 914f66
    const int in_wrap, const int out_wrap, const int channels, const int bits,
Shinya Kitaoka 120a6e
    /* Action Geometry */
shun-iwasawa 914f66
    const int b_blur_count,    /* min=1   def=51   incr=1   max=100  */
shun-iwasawa 914f66
    const double b_blur_power, /* min=0.1 def=1    incr=0.1 max=10.0 */
shun-iwasawa 914f66
    const int b_subpixel,      /* min=1   def=1    incr=1   max=8	 */
shun-iwasawa 914f66
    const int b_blur_near_ref, /* min=1   def=5    incr=1   max=100	 */
shun-iwasawa 914f66
    const int b_blur_near_len, /* min=1   def=160  incr=1   max=1000 */
shun-iwasawa 914f66
    const int b_smudge_thick,  /* min=1   def=7    incr=1   max=100	 */
shun-iwasawa 914f66
    const double b_smudge_remain,
Shinya Kitaoka 120a6e
    /* min=0.0 def=0.85 incr=0.001 max=1.0 */
shun-iwasawa 914f66
    const int v_smooth_retry,     /* min=0   def=100  incr=1   max=1000 */
shun-iwasawa 914f66
    const int v_near_ref,         /* min=0   def=4    incr=1   max=100	 */
shun-iwasawa 914f66
    const int v_near_len,         /* min=2   def=160  incr=1   max=1000 */
shun-iwasawa 914f66
    const bool mv_sw,             /* false=OFF */
shun-iwasawa 914f66
    const bool pv_sw,             /* false=OFF */
shun-iwasawa 914f66
    const bool cv_sw,             /* false=OFF */
shun-iwasawa 914f66
    const long reference_channel, /* 3 =Alpha:RGBA orBGRA */
shun-iwasawa 914f66
    const bool debug_save_sw,     /* false=OFF */
shun-iwasawa 914f66
    const int brush_action        /* 0 =Curve Blur ,1=Smudge Brush */
masafumi-inoue 635444
);
Toshihiro Shimizu 890ddd
}
masafumi-inoue 635444
}  // namespace igs
Toshihiro Shimizu 890ddd
Toshihiro Shimizu 890ddd
#endif /* !igs_line_blur_h */