Home
last modified time | relevance | path

Searched refs:biny (Results 1 – 25 of 59) sorted by relevance

123

/dports/graphics/opendx/dx-4.4.4/src/exec/dxmods/
H A Darrange.c102 int *binx, *biny; in m_Arrange() local
106 biny = NULL; in m_Arrange()
264 DXFree(biny); in m_Arrange()
271 DXFree(biny); in m_Arrange()
434 max_h = biny[i]; in _get_bins()
450 biny[nrows]=0; in _get_bins()
453 biny[nrows-i-1] += biny[nrows-i]; in _get_bins()
455 biny[nrows-i-1] = biny[nrows-i]+new_h; in _get_bins()
507 if (biny[j]<height) in _get_all_image_bounds()
508 biny[j]=height; in _get_all_image_bounds()
[all …]
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/bsta/
H A Dbsta_int_histogram_2d.h63 long int get_count(const unsigned int binx, const unsigned int biny) in get_count() argument
64 { assert(binx < nbins_x_ && biny < nbins_y_); return counts_[biny][binx]; } in get_count()
67 void set_count(const unsigned int binx, const unsigned int biny, const long int count) in set_count() argument
68 { if (binx<nbins_x_ && biny<nbins_y_) counts_[biny][binx] = count; } in set_count()
/dports/science/yoda/YODA-1.9.1/src/
H A DHisto1D.cc217 double biny; in add() local
221 biny = 0; in add()
265 double biny; in subtract() local
269 biny = 0; in subtract()
313 double biny; in subtract() local
317 biny = 0; in subtract()
361 double biny; in multiply() local
365 biny = 0; in multiply()
409 double biny; in divide() local
413 biny = 0; in divide()
[all …]
/dports/astro/astrometry/astrometry.net-0.85/util/
H A Dhistogram2d.c59 int biny = (y - h->miny) / h->binsizey; in histogram2d_add() local
70 biny = MIN(h->NY-1, MAX(0, biny)); in histogram2d_add()
72 if (biny < 0 || biny >= h->NY) in histogram2d_add()
77 bin = biny * h->NX + binx; in histogram2d_add()
H A Dplotshift.py51 biny = array([])
54 biny = digitize(rxy[:,1], edgesy)
56 biny = clip(biny - 1, 0, nh-1)
57 bin = biny * nw + binx
/dports/astro/stellarsolver/stellarsolver-1.8/stellarsolver/astrometry/util/
H A Dhistogram2d.c59 int biny = (y - h->miny) / h->binsizey; in histogram2d_add() local
70 biny = MIN(h->NY-1, MAX(0, biny)); in histogram2d_add()
72 if (biny < 0 || biny >= h->NY) in histogram2d_add()
77 bin = biny * h->NX + binx; in histogram2d_add()
/dports/graphics/colmap/colmap-3.6/lib/VLFeat/
H A Dhog.c625 vl_index binx, biny, o ; in vl_hog_put_image() local
699 biny = vl_floor_f(hy) ; in vl_hog_put_image()
701 wy2 = hy - biny ; in vl_hog_put_image()
709 if (binx >= 0 && biny >=0) { in vl_hog_put_image()
712 if (binx < (signed)self->hogWidth - 1 && biny >=0) { in vl_hog_put_image()
718 if (binx >= 0 && biny < (signed)self->hogHeight - 1) { in vl_hog_put_image()
769 vl_index bino, binx, biny ; in vl_hog_put_polar_field() local
813 biny = vl_floor_f(hy) ; in vl_hog_put_polar_field()
815 wy2 = hy - biny ; in vl_hog_put_polar_field()
826 if (binx >= 0 && biny >=0) { in vl_hog_put_polar_field()
[all …]
H A Ddsift.c501 int binx, biny, bint ; in _vl_dsift_with_gaussian_window() local
508 for (biny = 0 ; biny < self->geom.numBinY ; ++biny) { in _vl_dsift_with_gaussian_window()
512 biny, in _vl_dsift_with_gaussian_window()
540 + biny * (self->geom.numBinX * self->geom.numBinT) ; in _vl_dsift_with_gaussian_window()
555 (framey + biny * self->geom.binSizeY) * self->imWidth] ; in _vl_dsift_with_gaussian_window()
576 int binx, biny, bint ; in _vl_dsift_with_flat_window() local
596 for (biny = 0 ; biny < self->geom.numBinY ; ++biny) { in _vl_dsift_with_flat_window()
609 (self->geom.binSizeY, self->geom.numBinY, biny, in _vl_dsift_with_flat_window()
630 + biny * (self->geom.numBinX * self->geom.numBinT) ; in _vl_dsift_with_flat_window()
648 (framey + biny * self->geom.binSizeY) * self->imWidth] ; in _vl_dsift_with_flat_window()
H A Dsift.c1841 int biny = (int)vl_floor_f (ny - 0.5) ; in vl_sift_calc_raw_descriptor() local
1844 vl_sift_pix rbiny = ny - (biny + 0.5) ; in vl_sift_calc_raw_descriptor()
1857 biny + dbiny >= - (NBP/2) && in vl_sift_calc_raw_descriptor()
1858 biny + dbiny < (NBP/2) ) { in vl_sift_calc_raw_descriptor()
1865 atd(binx+dbinx, biny+dbiny, (bint+dbint) % NBO) += weight ; in vl_sift_calc_raw_descriptor()
2038 int biny = (int)vl_floor_f (ny - 0.5) ; in vl_sift_calc_keypoint_descriptor() local
2041 vl_sift_pix rbiny = ny - (biny + 0.5) ; in vl_sift_calc_keypoint_descriptor()
2054 biny + dbiny >= - (NBP/2) && in vl_sift_calc_keypoint_descriptor()
2055 biny + dbiny < (NBP/2) ) { in vl_sift_calc_keypoint_descriptor()
2062 atd(binx+dbinx, biny+dbiny, (bint+dbint) % NBO) += weight ; in vl_sift_calc_keypoint_descriptor()
/dports/devel/p5-Heap/Heap-0.80/t/
H A Dtest.t5 my $biny;
23 $fibi = $biny = $binl = 0;
25 ++$biny if $arg =~ /y/;
30 $biny = 1;
33 print "1..", ($b1*2*8+4)*($fibi+$biny+$binl)+1, "\n";
107 $biny && testaheap( Heap::Binary->new );
/dports/misc/openmvg/openMVG-2.0/src/nonFree/sift/vl/
H A Dsift.c1849 int biny = (int)vl_floor_f (ny - 0.5) ; in vl_sift_calc_raw_descriptor() local
1852 vl_sift_pix rbiny = ny - (biny + 0.5) ; in vl_sift_calc_raw_descriptor()
1865 biny + dbiny >= - (NBP/2) && in vl_sift_calc_raw_descriptor()
1866 biny + dbiny < (NBP/2) ) { in vl_sift_calc_raw_descriptor()
1873 atd(binx+dbinx, biny+dbiny, (bint+dbint) % NBO) += weight ; in vl_sift_calc_raw_descriptor()
2043 int biny = (int)vl_floor_f (ny - 0.5) ; in vl_sift_calc_keypoint_descriptor() local
2046 vl_sift_pix rbiny = ny - (biny + 0.5) ; in vl_sift_calc_keypoint_descriptor()
2059 biny + dbiny >= - (NBP/2) && in vl_sift_calc_keypoint_descriptor()
2060 biny + dbiny < (NBP/2) ) { in vl_sift_calc_keypoint_descriptor()
2067 atd(binx+dbinx, biny+dbiny, (bint+dbint) % NBO) += weight ; in vl_sift_calc_keypoint_descriptor()
/dports/misc/orange3/orange3-3.29.1/Orange/widgets/data/utils/
H A Dhistogram.py359 biny = self.y[mask[bin_idx]]
360 if np.isfinite(biny).any():
361 mean = ut.nanmean(biny) / ut.nanmax(self.y)
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/src/gtk/
H A Dlistbox.cpp785 gint binx, biny; in DoListHitTest() local
787 &binx, &biny, NULL, NULL); in DoListHitTest()
794 point.y - biny, in DoListHitTest()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/src/gtk/
H A Dlistbox.cpp785 gint binx, biny; in DoListHitTest() local
787 &binx, &biny, NULL, NULL); in DoListHitTest()
794 point.y - biny, in DoListHitTest()
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/src/gtk/
H A Dlistbox.cpp836 gint binx, biny; in DoListHitTest() local
838 &binx, &biny, NULL, NULL); in DoListHitTest()
845 point.y - biny, in DoListHitTest()
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/src/gtk/
H A Dlistbox.cpp958 gint binx, biny; in DoListHitTest() local
960 &binx, &biny, NULL, NULL, NULL); in DoListHitTest()
967 point.y - biny, in DoListHitTest()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/src/gtk/
H A Dlistbox.cpp958 gint binx, biny; in DoListHitTest() local
960 &binx, &biny, NULL, NULL, NULL); in DoListHitTest()
967 point.y - biny, in DoListHitTest()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/src/gtk/
H A Dlistbox.cpp958 gint binx, biny; in DoListHitTest() local
960 &binx, &biny, NULL, NULL, NULL); in DoListHitTest()
967 point.y - biny, in DoListHitTest()
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/src/gtk/
H A Dlistbox.cpp958 gint binx, biny; in DoListHitTest() local
960 &binx, &biny, NULL, NULL, NULL); in DoListHitTest()
967 point.y - biny, in DoListHitTest()
/dports/multimedia/obs-studio/obs-studio-27.1.3/UI/data/locale/
H A Dszl-PL.ini204 …o podglōnd i wyjście bin po przejściu (jeźli istniyje wyjście ôryginalnyj biny).\nNiy prziwroco to…
206 …ć ôpcyjo 'Tupluj zdrzōdła'.\nZmiana tyj ôpcyje zresetuje wyjście teroźnyj biny, jeźli ôna istniyje…
208biny.\nMożliwe to je jyno przi włōnczōnyj ôpcyje 'Tupluj bina'.\nNiykere zdrzōdła (na bajszpil prz…
213 Basic.SceneTransitions="Przejścia biny"
356 Basic.Main.AddSceneDlg.Text="Podej miano biny"
405 Basic.TransformWindow="Przekształcanie elymyntu biny"
514 Basic.MainMenu.SceneCollection.Import="Importuj kolekcyje biny"
517 Basic.MainMenu.SceneCollection.Exists="Kolekcyjo biny już istniyje"
563 Basic.Settings.General.MultiviewLayout.Horizontal.Extended.Top="Poziōmo, Wiyrch (24 biny)"
/dports/security/py-ckcc-protocol/ckcc-protocol-1.1.0/ckcc/
H A Dprotocol.py261 def biny(msg): member in CCProtocolUnpacker
/dports/astro/kstars/kstars-3.5.6/kstars/indi/
H A Dindiccd.cpp1188 int binx = 0, biny = 0; in processSwitch() local
1191 primaryChip->getBinning(&binx, &biny); in processSwitch()
1193 streamH = h / biny; in processSwitch()
1312 int binx = 1, biny = 1; in processStream() local
1315 primaryChip->getBinning(&binx, &biny); in processStream()
1317 streamH = h / biny; in processStream()
/dports/devel/indi/indi-1.9.1/libs/indibase/
H A Dindiccd.cpp1028 int binx, biny; in ISNewNumber() local
1032 biny = values[1]; in ISNewNumber()
1037 biny = values[0]; in ISNewNumber()
1040 if (UpdateCCDBin(binx, biny)) in ISNewNumber()
1064 int binx, biny; in ISNewNumber() local
1068 biny = values[1]; in ISNewNumber()
1073 biny = values[0]; in ISNewNumber()
1076 if (UpdateGuiderBin(binx, biny)) in ISNewNumber()
/dports/astro/phd2/phd2-2.6.10/cameras/
H A DArtemisHSCAPI.h276 … int ArtemisGetImageData(ArtemisHandle hCam, int *x, int *y, int *w, int *h, int *binx, int *biny);
H A DArtemisHSCAPI.cpp690 …TEMISGETIMAGEDATA)(ArtemisHandle hCam, int * x, int * y, int * w, int * h, int * binx, int * biny);
691 …ArtemisGetImageData(ArtemisHandle hCam, int * x, int * y, int * w, int * h, int * binx, int * biny) in ArtemisGetImageData() argument
699 return pArtemisGetImageData(hCam, x, y, w, h, binx, biny); in ArtemisGetImageData()

123