Home
last modified time | relevance | path

Searched refs:band_histo (Results 1 – 5 of 5) sorted by relevance

/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/test/src/base/
H A Dossim-kmeans-clustering-test.cpp42 ossimRefPtr<ossimHistogram> band_histo = mrlh->getHistogram(0);
43 if (!band_histo.valid())
51 const double* x = band_histo->GetVals();
52 const ossim_int64* y = band_histo->GetCounts();
53 ossim_uint32 N = (ossim_uint32) band_histo->GetRes();
/dports/databases/grass7/grass-7.8.6/lib/imagery/
H A Diclass_statistics.c65 statistics->band_histo = NULL; in I_iclass_init_statistics()
90 statistics->band_histo = (int **)G_calloc(nbands, sizeof(int *)); in alloc_statistics()
97 statistics->band_histo[i] = (int *)G_calloc(MAX_CATS, sizeof(int)); in alloc_statistics()
126 G_free(statistics->band_histo[i]); in I_iclass_free_statistics()
129 G_free(statistics->band_histo); in I_iclass_free_statistics()
162 statistics->band_histo[b][b2] = 0; in make_all_statistics()
253 statistics->band_histo[b][value]++; /* histogram */ in make_statistics()
688 *value = statistics->band_histo[band][cat]; in I_iclass_statistics_get_histo()
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/imaging/
H A DossimKMeansFilter.cpp240 ossimRefPtr<ossimHistogram> band_histo = m_histogram->getHistogram(band); in computeKMeans() local
241 if (!band_histo.valid()) in computeKMeans()
250 classifier->setSamples(band_histo->GetVals(), band_histo->GetRes()); in computeKMeans()
251 classifier->setPopulations(band_histo->GetCounts(), band_histo->GetRes()); in computeKMeans()
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/util/
H A DossimShorelineTool.cpp522 ossimRefPtr<ossimHistogram> band_histo = multi_histo->getHistogram(0); in autoComputeThreshold() local
523 if (!band_histo.valid()) in autoComputeThreshold()
532 classifier->setSamples(band_histo->GetVals(), band_histo->GetRes()); in autoComputeThreshold()
533 classifier->setPopulations(band_histo->GetCounts(), band_histo->GetRes()); in autoComputeThreshold()
/dports/databases/grass7/grass-7.8.6/include/
H A Dimagery.h131 int **band_histo; /*!< number of cells for cell category value (0-256) for each band */ member