Posts

SeedR

I am using seedr.cc website for many years. it's just amazing. I have tried many websites that were giving low speed with less space. but when I moved on seedr.cc I got 5+ Gb space even with very good speed. I strongly recommend all the people to use this. Simply just copy the link from the torrent website and paste it in seedr. You'll see your files there in some second. A very good thing that i like about it. that it instantly caught your file in their system. you don't need to wait for a long time. even you can get low seed or leches file therein seedr.cc. it's just amazing thing. Just use it. When you started to use it. you will never go anywhere. I am also a big fan of this website. they are working amazingly. even in future, they are introducing a feature, that you will be able to add selective files in seedr.cc . Thank you for reading. I have written what was best to my knowledge. 

Assignment 2: Stitching photo mosaics, The goal of the assignment is to automatically stitch images acquired by a panning camera into a mosaic as illustrated in figures 1 and 2 below.

Afbeelding
The goal of the assignment is to automatically stitch images acquired by a panning camera into a mosaic as illustrated in figures 1 and 2 below. Fig.1: Three images acquired by a panning camera. Fig.2: Images stitched to a mosaic. Algorithm outline: 1. Choose one image as the reference frame. 2. Estimate homography between each of the remaining images and the reference image. To estimate homography between two images use the following procedure: a. Detect local features in each image. b. Extract feature descriptor for each feature point. c. Match feature descriptors between two images.  d. Robustly estimate homography using RANSAC. 3.      Wrap each image into the reference frame and composite warped images into a single mosaic. Solution: Complete Matlab Code Stitching photo mosaics: mainfile code: % Read images image1_color = double(imread('a.jpg'))/255; image2_color = double(imread('b.jpg'))/255;