├── Rapor - Uygulama 1 Görüntü Bölütleme.pdf ├── Rapor - Uygulama 1 Görüntü Bölütleme.docx ├── Program - Uygulama 1 Görüntü Bölütleme ├── yilan.m ├── yilan.png └── GerekliSnakeKutuphanesi.rar ├── Image Segmentation with Snake (Active Contour) Algorithm.PNG ├── .gitattributes ├── README.md └── LICENSE /Rapor - Uygulama 1 Görüntü Bölütleme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulentsiyah/Image-Segmentation-with-Snake-Active-Contour-Algorithm/HEAD/Rapor - Uygulama 1 Görüntü Bölütleme.pdf -------------------------------------------------------------------------------- /Rapor - Uygulama 1 Görüntü Bölütleme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulentsiyah/Image-Segmentation-with-Snake-Active-Contour-Algorithm/HEAD/Rapor - Uygulama 1 Görüntü Bölütleme.docx -------------------------------------------------------------------------------- /Program - Uygulama 1 Görüntü Bölütleme/yilan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulentsiyah/Image-Segmentation-with-Snake-Active-Contour-Algorithm/HEAD/Program - Uygulama 1 Görüntü Bölütleme/yilan.m -------------------------------------------------------------------------------- /Program - Uygulama 1 Görüntü Bölütleme/yilan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulentsiyah/Image-Segmentation-with-Snake-Active-Contour-Algorithm/HEAD/Program - Uygulama 1 Görüntü Bölütleme/yilan.png -------------------------------------------------------------------------------- /Image Segmentation with Snake (Active Contour) Algorithm.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulentsiyah/Image-Segmentation-with-Snake-Active-Contour-Algorithm/HEAD/Image Segmentation with Snake (Active Contour) Algorithm.PNG -------------------------------------------------------------------------------- /Program - Uygulama 1 Görüntü Bölütleme/GerekliSnakeKutuphanesi.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulentsiyah/Image-Segmentation-with-Snake-Active-Contour-Algorithm/HEAD/Program - Uygulama 1 Görüntü Bölütleme/GerekliSnakeKutuphanesi.rar -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Image Segmentation with Snake (Active Contour) Algorithm 2 | 3 | In this project, segmentation was performed with a method other than the threshold method. The method used is the snake method, also known as Active Contour. The application has been developed on MATLAB R2008b. 4 | The application was tested on medical images and its performance was found to be more successful in detecting oval objects. 5 | 6 | ![Image Segmentation with Snake (Active Contour) Algorithm](https://github.com/bulentsiyah/Image-Segmentation-with-Snake-Active-Contour-Algorithm/blob/master/Image%20Segmentation%20with%20Snake%20(Active%20Contour)%20Algorithm.PNG) 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Bulent SIYAH 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------