Home
last modified time | relevance | path

Searched refs:histo (Results 201 – 225 of 1312) sorted by relevance

12345678910>>...53

/dports/graphics/dssim/dssim-3.1.2/cargo-crates/libwebp-sys2-0.1.2/c_src/src/dsp/
H A Dlossless_enc_mips_dsp_r2.c180 int histo[]) { in CollectColorBlueTransforms_MIPSdspR2() argument
211 ++histo[(uint8_t)(temp2 >> 16)]; in CollectColorBlueTransforms_MIPSdspR2()
212 ++histo[(uint8_t)temp2]; in CollectColorBlueTransforms_MIPSdspR2()
215 ++histo[TransformColorBlue(green_to_blue, red_to_blue, *p_argb)]; in CollectColorBlueTransforms_MIPSdspR2()
233 int histo[]) { in CollectColorRedTransforms_MIPSdspR2() argument
256 ++histo[(uint8_t)(temp2 >> 16)]; in CollectColorRedTransforms_MIPSdspR2()
257 ++histo[(uint8_t)temp2]; in CollectColorRedTransforms_MIPSdspR2()
260 ++histo[TransformColorRed(green_to_red, *p_argb)]; in CollectColorRedTransforms_MIPSdspR2()
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/filters/rank/
H A Dbilateral_cy.pyx14 Py_ssize_t[::1] histo, argument
27 bilat_pop += histo[i]
28 mean += histo[i] * i
38 Py_ssize_t[::1] histo, argument
50 bilat_pop += histo[i]
57 Py_ssize_t[::1] histo, argument
70 bilat_pop += histo[i]
71 sum += histo[i] * i
H A Dcore_cy_3d.pyx107 # histogram_increment(histo, pop, image[pp, rr, cc])
108 histo[image[pp, rr, cc]] += 1
115 Py_ssize_t [::1] histo, argument
130 histo[image[pp, rr, cc]] += 1
146 histo[image[pp, rr, cc]] -= 1
216 cdef Py_ssize_t [::1] histo = np.zeros(n_bins, dtype=np.intp)
231 histo[:] = 0
241 kernel(&out[p, r, c, 0], odepth, histo, pop, image[p, r, c],
254 kernel(&out[p, r, c, 0], odepth, histo, pop,
265 kernel(&out[p, r, c, 0], odepth, histo, pop,
[all …]
/dports/graphics/qt5-imageformats/kde-qtimageformats-5.15.2p3/src/3rdparty/libwebp/src/dsp/
H A Dlossless_enc_mips_dsp_r2.c180 int histo[]) { in CollectColorBlueTransforms_MIPSdspR2() argument
211 ++histo[(uint8_t)(temp2 >> 16)]; in CollectColorBlueTransforms_MIPSdspR2()
212 ++histo[(uint8_t)temp2]; in CollectColorBlueTransforms_MIPSdspR2()
215 ++histo[TransformColorBlue(green_to_blue, red_to_blue, *p_argb)]; in CollectColorBlueTransforms_MIPSdspR2()
233 int histo[]) { in CollectColorRedTransforms_MIPSdspR2() argument
256 ++histo[(uint8_t)(temp2 >> 16)]; in CollectColorRedTransforms_MIPSdspR2()
257 ++histo[(uint8_t)temp2]; in CollectColorRedTransforms_MIPSdspR2()
260 ++histo[TransformColorRed(green_to_red, *p_argb)]; in CollectColorRedTransforms_MIPSdspR2()
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonzlib/
H A Dautoadjust.cpp64 cum[0] = histo[0]; in build_cum()
471 int histo[256], raster_is_savebox; in build_gr_cum() local
496 build_cum(histo, cum); in build_gr_cum()
1145 build_th_histo(image, histo); in eval_image_th()
1169 is_max[hgrey][width] = histo[hgrey][width] > histo[hgrey][width - 1] && in eval_image_th()
1170 histo[hgrey][width] > histo[hgrey][width + 1] && in eval_image_th()
1238 n = histo[hgrey][width]; in eval_image_th()
1243 n += histo[hgrey][width]; in eval_image_th()
1245 last = histo[hgrey][width]; in eval_image_th()
1251 n += histo[hgrey][width]; in eval_image_th()
[all …]
/dports/biology/stringtie/stringtie-2.1.1/SuperReads_RNA/global-1/jellyfish/swig/perl5/t/
H A Dtest_mer_file.t8 # Compare histo
11 my @histo;
12 $histo[$rf->count]++ while($rf->next_mer);
14 open(my $io, "<", $data . "/swig_perl.histo");
21 is_deeply(\@histo, \@jf_histo, "Histogram");
/dports/multimedia/v4l_compat/linux-5.13-rc2/fs/jffs2/
H A Dcompr_rubin.c309 unsigned char histo[256]; in jffs2_dynrubin_compress() local
320 memset(histo, 0, 256); in jffs2_dynrubin_compress()
322 histo[data_in[i]]++; in jffs2_dynrubin_compress()
326 bits[7] += histo[i]; in jffs2_dynrubin_compress()
328 bits[6] += histo[i]; in jffs2_dynrubin_compress()
330 bits[5] += histo[i]; in jffs2_dynrubin_compress()
332 bits[4] += histo[i]; in jffs2_dynrubin_compress()
334 bits[3] += histo[i]; in jffs2_dynrubin_compress()
336 bits[2] += histo[i]; in jffs2_dynrubin_compress()
338 bits[1] += histo[i]; in jffs2_dynrubin_compress()
[all …]
/dports/astro/siril/siril/src/core/
H A Dundo.c87 static int undo_remove_item(historic *histo, int index) { in undo_remove_item() argument
88 if (histo[index].filename) { in undo_remove_item()
89 g_unlink(histo[index].filename); in undo_remove_item()
90 g_free(histo[index].filename); in undo_remove_item()
91 histo[index].filename = NULL; in undo_remove_item()
93 memset(histo[index].history, 0, FLEN_VALUE); in undo_remove_item()
97 static void undo_add_item(fits *fit, char *filename, char *histo) { in undo_add_item() argument
114 snprintf(com.history[com.hist_current].history, FLEN_VALUE, "%s", histo); in undo_add_item()
249 char histo[FLEN_VALUE] = { 0 }; in undo_save_state() local
255 vsnprintf(histo, FLEN_VALUE, message, args); in undo_save_state()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/fs/jffs2/
H A Dcompr_rubin.c309 unsigned char histo[256]; in jffs2_dynrubin_compress() local
320 memset(histo, 0, 256); in jffs2_dynrubin_compress()
322 histo[data_in[i]]++; in jffs2_dynrubin_compress()
326 bits[7] += histo[i]; in jffs2_dynrubin_compress()
328 bits[6] += histo[i]; in jffs2_dynrubin_compress()
330 bits[5] += histo[i]; in jffs2_dynrubin_compress()
332 bits[4] += histo[i]; in jffs2_dynrubin_compress()
334 bits[3] += histo[i]; in jffs2_dynrubin_compress()
336 bits[2] += histo[i]; in jffs2_dynrubin_compress()
338 bits[1] += histo[i]; in jffs2_dynrubin_compress()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/fs/jffs2/
H A Dcompr_rubin.c309 unsigned char histo[256]; in jffs2_dynrubin_compress() local
320 memset(histo, 0, 256); in jffs2_dynrubin_compress()
322 histo[data_in[i]]++; in jffs2_dynrubin_compress()
326 bits[7] += histo[i]; in jffs2_dynrubin_compress()
328 bits[6] += histo[i]; in jffs2_dynrubin_compress()
330 bits[5] += histo[i]; in jffs2_dynrubin_compress()
332 bits[4] += histo[i]; in jffs2_dynrubin_compress()
334 bits[3] += histo[i]; in jffs2_dynrubin_compress()
336 bits[2] += histo[i]; in jffs2_dynrubin_compress()
338 bits[1] += histo[i]; in jffs2_dynrubin_compress()
[all …]
/dports/math/openturns/openturns-1.18/python/doc/examples/meta_modeling/kriging_metamodel/
H A Dplot_kriging_cantilever_beam.py49 histo = ot.HistogramFactory().build(Y_train).drawPDF() variable
50 histo.setXTitle("Vertical deviation (cm)")
51 histo.setTitle("Distribution of the vertical deviation")
52 histo.setLegends([""])
53 view = viewer.View(histo)
H A Dplot_kriging_cantilever_beam_hmat.py49 histo = ot.HistogramFactory().build(Y_train).drawPDF() variable
50 histo.setXTitle("Vertical deviation (cm)")
51 histo.setTitle("Distribution of the vertical deviation")
52 histo.setLegends([""])
53 view = viewer.View(histo)
/dports/graphics/guetzli/guetzli-1.0.1/guetzli/
H A Djpeg_data_writer.h87 void BuildDCHistograms(const JPEGData& jpg, JpegHistogram* histo);
88 void BuildACHistograms(const JPEGData& jpg, JpegHistogram* histo);
93 size_t HistogramEntropyCost(const JpegHistogram& histo,
95 size_t HistogramHeaderCost(const JpegHistogram& histo);
100 size_t ClusterHistograms(JpegHistogram* histo, size_t* num, int* histo_indexes,
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libwebp/src/enc/
H A Danalysis_enc.c117 const int max_value = histo->max_value; in GetAlpha()
118 const int last_non_zero = histo->last_non_zero; in GetAlpha()
125 histo->max_value = 0; in InitHistogram()
126 histo->last_non_zero = 1; in InitHistogram()
238 VP8Histogram histo; in MBAnalyzeBestIntra16Mode() local
241 InitHistogram(&histo); in MBAnalyzeBestIntra16Mode()
244 0, 16, &histo); in MBAnalyzeBestIntra16Mode()
245 alpha = GetAlpha(&histo); in MBAnalyzeBestIntra16Mode()
287 VP8Histogram histo; in MBAnalyzeBestUVMode() local
289 InitHistogram(&histo); in MBAnalyzeBestUVMode()
[all …]
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/libwebp-sys2-0.1.2/c_src/src/enc/
H A Danalysis_enc.c117 const int max_value = histo->max_value; in GetAlpha()
118 const int last_non_zero = histo->last_non_zero; in GetAlpha()
125 histo->max_value = 0; in InitHistogram()
126 histo->last_non_zero = 1; in InitHistogram()
238 VP8Histogram histo; in MBAnalyzeBestIntra16Mode() local
241 InitHistogram(&histo); in MBAnalyzeBestIntra16Mode()
244 0, 16, &histo); in MBAnalyzeBestIntra16Mode()
245 alpha = GetAlpha(&histo); in MBAnalyzeBestIntra16Mode()
287 VP8Histogram histo; in MBAnalyzeBestUVMode() local
289 InitHistogram(&histo); in MBAnalyzeBestUVMode()
[all …]
/dports/www/firefox/firefox-99.0/media/libwebp/src/enc/
H A Danalysis_enc.c117 const int max_value = histo->max_value; in GetAlpha()
118 const int last_non_zero = histo->last_non_zero; in GetAlpha()
125 histo->max_value = 0; in InitHistogram()
126 histo->last_non_zero = 1; in InitHistogram()
238 VP8Histogram histo; in MBAnalyzeBestIntra16Mode() local
241 InitHistogram(&histo); in MBAnalyzeBestIntra16Mode()
244 0, 16, &histo); in MBAnalyzeBestIntra16Mode()
245 alpha = GetAlpha(&histo); in MBAnalyzeBestIntra16Mode()
287 VP8Histogram histo; in MBAnalyzeBestUVMode() local
289 InitHistogram(&histo); in MBAnalyzeBestUVMode()
[all …]
/dports/graphics/webp/libwebp-1.2.1/src/enc/
H A Danalysis_enc.c117 const int max_value = histo->max_value; in GetAlpha()
118 const int last_non_zero = histo->last_non_zero; in GetAlpha()
125 histo->max_value = 0; in InitHistogram()
126 histo->last_non_zero = 1; in InitHistogram()
238 VP8Histogram histo; in MBAnalyzeBestIntra16Mode() local
241 InitHistogram(&histo); in MBAnalyzeBestIntra16Mode()
244 0, 16, &histo); in MBAnalyzeBestIntra16Mode()
245 alpha = GetAlpha(&histo); in MBAnalyzeBestIntra16Mode()
287 VP8Histogram histo; in MBAnalyzeBestUVMode() local
289 InitHistogram(&histo); in MBAnalyzeBestUVMode()
[all …]
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/bep/gowebp/libwebp_src/src/enc/
H A Danalysis_enc.c117 const int max_value = histo->max_value; in GetAlpha()
118 const int last_non_zero = histo->last_non_zero; in GetAlpha()
125 histo->max_value = 0; in InitHistogram()
126 histo->last_non_zero = 1; in InitHistogram()
238 VP8Histogram histo; in MBAnalyzeBestIntra16Mode() local
241 InitHistogram(&histo); in MBAnalyzeBestIntra16Mode()
244 0, 16, &histo); in MBAnalyzeBestIntra16Mode()
245 alpha = GetAlpha(&histo); in MBAnalyzeBestIntra16Mode()
287 VP8Histogram histo; in MBAnalyzeBestUVMode() local
289 InitHistogram(&histo); in MBAnalyzeBestUVMode()
[all …]
/dports/graphics/opencv/opencv-4.5.3/3rdparty/libwebp/src/enc/
H A Danalysis_enc.c117 const int max_value = histo->max_value; in GetAlpha()
118 const int last_non_zero = histo->last_non_zero; in GetAlpha()
125 histo->max_value = 0; in InitHistogram()
126 histo->last_non_zero = 1; in InitHistogram()
238 VP8Histogram histo; in MBAnalyzeBestIntra16Mode() local
241 InitHistogram(&histo); in MBAnalyzeBestIntra16Mode()
244 0, 16, &histo); in MBAnalyzeBestIntra16Mode()
245 alpha = GetAlpha(&histo); in MBAnalyzeBestIntra16Mode()
287 VP8Histogram histo; in MBAnalyzeBestUVMode() local
289 InitHistogram(&histo); in MBAnalyzeBestUVMode()
[all …]
/dports/graphics/dssim/dssim-3.1.2/cargo-crates/libwebp-sys2-0.1.2/c_src/src/enc/
H A Danalysis_enc.c117 const int max_value = histo->max_value; in GetAlpha()
118 const int last_non_zero = histo->last_non_zero; in GetAlpha()
125 histo->max_value = 0; in InitHistogram()
126 histo->last_non_zero = 1; in InitHistogram()
238 VP8Histogram histo; in MBAnalyzeBestIntra16Mode() local
241 InitHistogram(&histo); in MBAnalyzeBestIntra16Mode()
244 0, 16, &histo); in MBAnalyzeBestIntra16Mode()
245 alpha = GetAlpha(&histo); in MBAnalyzeBestIntra16Mode()
287 VP8Histogram histo; in MBAnalyzeBestUVMode() local
289 InitHistogram(&histo); in MBAnalyzeBestUVMode()
[all …]
/dports/databases/libcouchbase/libcouchbase-2.10.7/src/
H A Dhdr_timings.c38 lcb_HISTOGRAM* histo = calloc(1, sizeof(struct lcb_histogram_st)); in lcb_histogram_create() local
40 if (histo != NULL) { in lcb_histogram_create()
44 &histo->hdr_histogram); in lcb_histogram_create()
47 return histo; in lcb_histogram_create()
/dports/math/openturns/openturns-1.18/python/doc/examples/probabilistic_modeling/distributions/
H A Dplot_generate_by_inversion.py152 histo = ot.HistogramFactory().build(weibullSample).drawPDF() variable
153 histo.setTitle("Weibull alpha=%s, beta=%s, n=%d" % (alpha, beta, n))
154 histo.setLegends(["Sample"])
158 histo.add(wpdf)
159 view = viewer.View(histo)
/dports/devel/folly/folly-2021.12.27.00/folly/container/test/
H A DF14TestUtil.h34 inline std::ostream& operator<<(std::ostream& xo, Histo const& histo) {
37 for (auto v : histo.data) {
41 for (size_t i = 0; i < histo.data.size(); ++i) {
45 partial += histo.data[i];
46 if (histo.data[i] > 0) {
47 xo << i << ": " << histo.data[i] << " ("
/dports/graphics/lerc/lerc-3.0/src/LercLib/
H A DHuffman.cpp35 bool Huffman::ComputeCodes(const vector<int>& histo) in ComputeCodes() argument
37 if (histo.empty() || histo.size() >= m_maxHistoSize) in ComputeCodes()
44 int size = (int)histo.size(); in ComputeCodes()
46 if (histo[i] > 0) in ComputeCodes()
47 pq.push(Node((short)i, histo[i])); in ComputeCodes()
85 bool Huffman::ComputeCompressedSize(const std::vector<int>& histo, int& numBytes, double& avgBpp) c… in ComputeCompressedSize() argument
87 if (histo.empty() || histo.size() >= m_maxHistoSize) in ComputeCompressedSize()
95 int size = (int)histo.size(); in ComputeCompressedSize()
97 if (histo[i] > 0) in ComputeCompressedSize()
99 numBits += histo[i] * m_codeTable[i].first; in ComputeCompressedSize()
[all …]
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/third_party/LercLib/
H A DHuffman.cpp35 bool Huffman::ComputeCodes(const vector<int>& histo) in ComputeCodes() argument
37 if (histo.empty() || histo.size() >= m_maxHistoSize) in ComputeCodes()
44 int size = (int)histo.size(); in ComputeCodes()
46 if (histo[i] > 0) in ComputeCodes()
47 pq.push(Node((short)i, histo[i])); in ComputeCodes()
85 bool Huffman::ComputeCompressedSize(const std::vector<int>& histo, int& numBytes, double& avgBpp) c… in ComputeCompressedSize() argument
87 if (histo.empty() || histo.size() >= m_maxHistoSize) in ComputeCompressedSize()
95 int size = (int)histo.size(); in ComputeCompressedSize()
97 if (histo[i] > 0) in ComputeCompressedSize()
99 numBits += histo[i] * m_codeTable[i].first; in ComputeCompressedSize()
[all …]

12345678910>>...53