با پيشرفت تكنولوژي و مجهزشدن دوربينهاي تصويربرداري، دقت تصاوير موجود افزايش يافته است. بالارفتن دقت تصاوير نقش مهمي در كيفيت تجزيه و تحليل آنها دارد اما اين دقت كه به واسطه افزايش نقاط موجود در تصوير و بالارفتن حجم اطلاعاتي آن حاصل شده است، مشكلات بسياري را در خصوص نگهداري و سرعت پردازش تصاوير به وجود آورده و به همين دليل مسأله سادهسازي سرزمين مطرح شده است (معمولاً يك سرزمين به صورت مجموعهاي از n نقطه در فضاي سهبعدي تعريف ميشود). هدف مسأله سادهسازي اين است كه تعدادي از نقاط يك سرزمين حذف شود به نحوي كه خطاي سرزمين پس از سادهسازي، بيشتر از ميزان تعيينشده نباشد. خطاي سادهسازي به دو صورت تعريف ميشود، يكي اين كه پس از سادهسازي، m نقطه با حداقل خطا در سرزمين وجود داشته باشد (m≤n) يا اين كه حداكثر خطا پس از سادهسازي به ازاي كمترين تعداد نقاط، epsilon باشد (0
چكيده لاتين :
Terrain simplification problem is one of fundamental problems in computational geometry and it has many applications in other fields such as geometric information systems, computer graphics, image processing. Terrain is commonly defined by a set of n points in three dimension space. Major goal of terrain simplification problem is removing some points of one terrain so that maximum error of simplified surface is a certain threshold. There are two optimization goals for this problem: (1) min-k, where for a given error threshold , the goal is to find a simplification with the minimum number of points for which the error is that most , and (2) min-, where for a given number n, the goal is to find a simplification of at most m points that has the minimum simplification error. Simplification problem is NP-hard in optimal case. In this paper we present a hybrid algorithm for terrain simplification that performs in three phases. First, terrain is divided to some clusters, then any cluster is simplified independently and finally, the simplified clusters are merged. Our algorithm solves the problem in . The proposed algorithm is implemented and verified by experiments.