搜索资源列表
最小圆排列问题
- 给定N个大小不等的圆c1,c2,…,cn,现要将这N个圆排进一个矩形框中,且要求各圆与矩形框的底边相切。圆排列问题要求从N个圆的所有排列中找出有最小长度的圆排列。-given N ranging from the size of the circle c1, c2, ..., cn, when it is 000 yen N discharged into a rectangular box, demanding the rectang
n个圆的组合
- 对工作分配进行多次优化,直到找到最优的分配方式。 首先将所有工作交给能力最强的人做,然后找出最低安全值和最高安全值,此时将未分配工作的人的能力值当作安全值参与判断,把安全值最低者分配的仓库数减一,并将这个仓库交给安全值最高者看守,然后进入下次优化,在新一次优化过程中把最低安全值和上次优化时的最低安全值作比较,如果这次最低安全值比上次大,则继续进行优化,若系统最低安全值相比上次下降,则说明上次优化后的结果已经是最优,即得结果。-work
最小圆排列问题
- 给定N个大小不等的圆c1,c2,…,cn,现要将这N个圆排进一个矩形框中,且要求各圆与矩形框的底边相切。圆排列问题要求从N个圆的所有排列中找出有最小长度的圆排列。-given N ranging from the size of the circle c1, c2, ..., cn, when it is 000 yen N discharged into a rectangular box, demanding the rectang
n个圆的组合
- 对工作分配进行多次优化,直到找到最优的分配方式。 首先将所有工作交给能力最强的人做,然后找出最低安全值和最高安全值,此时将未分配工作的人的能力值当作安全值参与判断,把安全值最低者分配的仓库数减一,并将这个仓库交给安全值最高者看守,然后进入下次优化,在新一次优化过程中把最低安全值和上次优化时的最低安全值作比较,如果这次最低安全值比上次大,则继续进行优化,若系统最低安全值相比上次下降,则说明上次优化后的结果已经是最优,即得结果。-work
CGMEC013395
- 最小覆盖圆,很多点,然后找一个最小覆盖他们这些点的圆,有算法。-coverage of the smallest circle, many of the points, and then look for a minimum coverage of these points they won, algorithm.
ncircle
- 给定n个大小不等的圆c , c , , cn 1 2 ,现要将这n个圆排进一个矩形框中,且要求各圆 与矩形框的底边相切。圆排列问题要求从n个圆的所有排列中找出有最小长度的圆排列。例 如,当n=3,且所给的3 个圆的半径分别为1,1,2时,这3个圆的最小长度的圆排列如图 所示。其最小长度为2 + 4 2 。-given n ranging from the size of the circle c, c,, c
houghsearchcircle
- 文件给出了matlab语言进行,对二值图像先用sobel 算子找出边缘,再用hough变换找出圆的圆心和半径的程序,并附图像和解释!-documents given Matlab language, the binary image segmentation using the operator to identify the edge then Hough transform to identify the center of a c
3DPieChart
- 本文的想法就是创建一个独立的能够用于绘制立体三维饼状图的类库。首先,它看起来非常简单,因为,在Graphics 类中已经有了一个叫DrawPie 的方法。这个方法接收开始角度和展开角度作为参数,因此,看上去不再有什么其它的问题了。不过它实现的是一个平面的圆饼图,我需要的是一个三维的透视图;如果你也正需要这样的一个控件,这篇文章将再适合不过了 本文中的PieChart 解决方案包括三个类:PieSlice, PieChart3D 和
hough2
- hough变换中,进行了hough变换,峰值检测,找非零点,找到相关像素后,还要执行这个操作,才能实现功能-hough transform for the hough transform, peak detection, to find non-zero, after finding the relevant pixel, but also the implementation of this operation, to achieve
circles
- 这段程序利用 Hough 变换在灰度图像中找圆 ,并可进而给出圆心和半径-The function cvHoughCircles finds circles in grayscale image using some modification of Hough transform.
03
- 给定n个大小不等的圆c1,c2,c3,...,cn,现要将这n个圆排进一个矩形框中,且要求各圆与矩形框的底边相切。圆排列问题要求从n个圆的所有排列中找出有最小长度的圆排列。编程任务:对于给定的n个圆,设计算法,计算n个圆的最佳排列方案,使其长度达到最小。 输入:第一行有1个正整数n (圆的个数1≤n≤20) 接下来的1行有n个数,表示n个圆的半径 输出:将计算出的最小圆排列的长度(保留2位小数) 例如: 输入:
hough
- 对 二值图像进行霍夫变换 找出圆来,即找到圆心和半径,再将圆画出来- houghcircle- takes an edge map image, and performs the Hough transform for finding circles in the image.
Opencvfindellipse
- 可以找出彩色图中的椭圆轮廓,可以用在模式识别,工件检查方面-Color chart can be found in the oval contour, can be used in pattern recognition, parts inspection
opencv17
- opencv霍夫圆变换,在灰度图中找圆序列-opencv Hough circle transform, looking round in the sequence in grayscale
Hough-transform-to-get-circle
- 用HOUGH变换在彩色图片中找圆,目前参数只能找到比较标准的圆-to find cirle in a color picture with HOUGH transform
find_circle
- 基于Halcon 10编写的找圆边缘的算法 内置集成找圆过程-To find the edge of the circle algorithm based on Halcon 10 writing Built-in integration for circular process
霍夫变换找圆
- 利用霍夫变换找出圆,输出圆心坐标.比较不错的代码,值得学习.(Hof transform is used to find the circle and output the coordinate of the center of the circle.)
find+circle
- 找出一个圆的中心点或多个圆的中心。。。。(Find the center of a circle or the center of multiple circles...)
霍夫变换找圆
- 此代码为霍夫变换找圆,检测提取圆,可以通过单片机验证(This code for the Huff transform find a circle, detection extraction circle, can be verified by the microcontroller)
最小二乘法圆拟合方法1
- 通过对图像中值滤波处理,二值化,边缘查询,找出图像中源所有的边缘像素点,然后利用最小二乘法对这些边缘点进行找圆,计算出圆的坐标和半径。(By means of median filtering, binarization and edge query, all edge pixels in the image source are found, and then the least square method is used to fi