Home
last modified time | relevance | path

Searched refs:raw_hist (Results 1 – 13 of 13) sorted by relevance

/dports/graphics/scantailor/scantailor-advanced-1.0.16/imageproc/
H A DBackgroundColorCalculator.cpp112 void grayHistToArray(int* raw_hist, GrayscaleHistogram hist) { in grayHistToArray() argument
114 raw_hist[i] = hist[i]; in grayHistToArray()
212 int raw_hist[256]; in calcDominantColor() local
213 grayHistToArray(raw_hist, hist); in calcDominantColor()
214 uint8_t dominant_gray = calcDominantLevel(raw_hist); in calcDominantColor()
/dports/lang/qmasm/qmasm-4.1/src/qmasm/
H A Dsolutions.py334 raw_hist = {}
338 raw_hist[estr] += t
340 raw_hist[estr] = t
346 for et in sorted(raw_hist.items(), reverse=True):
/dports/graphics/photoflow/PhotoFlow-8472024f/src/operations/
H A Draw_image.hh146 unsigned long int* raw_hist; member in PF::RawImage
H A Draw_image.cc153 raw_hist( NULL ), pdata( NULL ) in RawImage()
315 std::cout<<"raw_hist: "<<(void*)raw_hist<<" image:"<<image<<std::endl; in RawImage()
322 (VipsCallbackFn) g_free, raw_hist, in RawImage()
774 raw_hist = (unsigned long int*)malloc( 65536*3*sizeof(unsigned long int) ); in load_rawspeed()
775 if( !raw_hist ) { in load_rawspeed()
780 std::cout<<"Raw histogram buffer allocated: "<<(void*)raw_hist<<std::endl; in load_rawspeed()
782 memset( raw_hist, 0, 65536*3*sizeof(unsigned long int) ); in load_rawspeed()
845 raw_hist[hist_id] += 1; in load_rawspeed()
1104 raw_hist = (unsigned long int*)malloc( 65536*3*sizeof(unsigned long int) ); in load_rawtherapee()
1105 memset( raw_hist, 0, 65536*3*sizeof(unsigned long int) ); in load_rawtherapee()
[all …]
/dports/math/armadillo/armadillo-10.7.1/include/armadillo_bits/
H A Dgmm_full_bones.hpp82 …template<typename T1> inline urowvec raw_hist(const Base<eT,T1>& expr, const gmm_dist_mode& dist_…
H A Dgmm_diag_bones.hpp82 …template<typename T1> inline urowvec raw_hist(const Base<eT,T1>& expr, const gmm_dist_mode& dist_…
H A Dgmm_diag_meat.hpp601 gmm_diag<eT>::raw_hist(const Base<eT,T1>& expr, const gmm_dist_mode& dist_mode) const in raw_hist() function in gmm_priv::gmm_diag
H A Dgmm_full_meat.hpp640 gmm_full<eT>::raw_hist(const Base<eT,T1>& expr, const gmm_dist_mode& dist_mode) const in raw_hist() function in gmm_priv::gmm_full
/dports/math/R-cran-RcppArmadillo/RcppArmadillo/inst/include/armadillo_bits/
H A Dgmm_diag_bones.hpp82 …template<typename T1> inline urowvec raw_hist(const Base<eT,T1>& expr, const gmm_dist_mode& dist_…
H A Dgmm_full_bones.hpp82 …template<typename T1> inline urowvec raw_hist(const Base<eT,T1>& expr, const gmm_dist_mode& dist_…
H A Dgmm_full_meat.hpp640 gmm_full<eT>::raw_hist(const Base<eT,T1>& expr, const gmm_dist_mode& dist_mode) const in raw_hist() function in gmm_priv::gmm_full
H A Dgmm_diag_meat.hpp601 gmm_diag<eT>::raw_hist(const Base<eT,T1>& expr, const gmm_dist_mode& dist_mode) const in raw_hist() function in gmm_priv::gmm_diag
/dports/graphics/photoflow/PhotoFlow-8472024f/src/gui/operations/
H A Draw_developer_config.cc1061 unsigned long int* raw_hist = NULL; local
1082 if( PF_VIPS_IMAGE_GET_BLOB( inode->image, "raw-hist", &raw_hist, &blobsz ) ||
1084 …std::cout<<"[RawDeveloperConfigGUI::do_update] raw_hist="<<raw_hist<<" blobsz="<<blobsz<<std::end…
1085 raw_hist = NULL;
1087 histogramArea.hist = raw_hist;