美女扒开腿免费视频_蜜桃传媒一区二区亚洲av_先锋影音av在线_少妇一级淫片免费放播放_日本泡妞xxxx免费视频软件_一色道久久88加勒比一_熟女少妇一区二区三区_老司机免费视频_潘金莲一级黄色片_精品国产精品国产精品_黑人巨大猛交丰满少妇

CSI 2120代做、代寫Python/Java設(shè)計編程

時間:2024-04-12  來源:  作者: 我要糾錯



Faculty of Engineering
School of Electrical
Engineering
and Computer Science
CSI 2120
Programming Paradigms
Similarity image search
Comprehensive assignment
(24%)
Winter 2024
Project for a group of 2 students at most
Part 1 due February 16th before 23:59
Part 2 due March 8th before 23:59
Part 3 and 4 due le April 22nd before 23:59
Late assignment policy: minus 10% for each day late. For example : a project due Friday night but
handed out on the Monday morning: -30%
Problem description
Nowadays, images are created and accumulated at a frenetic pace. It has become essential to have powerful
computer tools capable of analyzing these images and facilitating the search, classification, and discovery
of images of interest. In this project, you are asked to program a simple method for searching similar
images. By similar images, we mean images that resemble each other in terms of the content they present
and their visual appearance, colors and textures (for example, images showing sunsets).
Your program will manipulate color digital images. Let's then explain how these images are structured. A
digital image is divided into a rectangular grid in which each element is a pixel ('picture element'). This
grid contains a certain number of columns and rows, defining the image's resolution (for example, your
phone can probably produce images with a resolution of 4032x3024 pixels). A pixel contains the color
information associated with the corresponding position in the image. If your image were in grayscale (a
'black and white' image), each pixel would have a value between 0 and 255 (this 8-bit representation is
the most common), with 0 being black, 255 being white and the other values representing different shades
of gray. In the case of a color image, each pixel contains three values (three channels), corresponding to
the three primary colors: red, green, blue (RGB). These three values represent the amount of red, green,
and blue required to produce the desired color. For example, the color 255: red, 255: green, 0: blue will
produce a light yellow, while the color 50: red, 0: green, 0: blue will result in a dark red. The values
associated with a pixel are usually represented by a vector [R, G, B] containing the values for these three
channels (e.g. [255, 255, 0] for light yellow). Since each color can take a value between 0 and 255, the
combination of the three channels produces 256 x 256 x 256 different colors (i.e. more than 16 million).
CSI 2120 page 2
_________________________________________________________________________________________________
We are looking for similar images. So, let’s assume that images with similar colors should have similar
content. This is a simplistic assumption that is not always true but generally yields acceptable albeit
imperfect results. This is what we will verify in this project. Therefore, it is necessary to calculate the
histogram of an image and compare these histograms.
The histogram is simply the count of the colors contained in an image. It involves counting how many
pixels have the color [0, 0, 0], how many have the color [0, 0, 1], and so on. However, this would mean
counting the pixels for all 16 million possible colors, which is expensive and not very precise. It is
therefore recommended to reduce the color space. This can be done by simply reducing the number of
possible values, for example, by going from 8-bit values to 3-bit values per channel, resulting in a color
space of only 8 x 8 x 8 = 512 possible colors. In this case, a simple bit right-shift by 8 – 3 = 5 positions
reduces the space. The histogram will then have only 512 entries, a bin for each of the possible colors. To
compare images with different resolutions (different numbers of pixels), it is necessary to normalize the
histogram, i.e., divide each entry by the total number of pixels (such that by summing all the values of the
histogram, we will obtain 1.0).
Histogram comparison
As explained, the images will be compared by comparing their histograms. This can be done using
histogram intersection which can be computed, for the histograms H1 and H2, as follows:
If the two histograms are identical, this sum will give a value equal to 1.0. Conversely, if the two images
have no colors in common, then their histogram intersection will be equal to 0.0. Consequently, the more
similar are two images, the closer to 1.0 will be their histogram intersection.
Searching similar images
You are asked to find the images that are similar to a query image using color histogram intersection. An
image dataset will be provided for the search. The algorithm that searches the K most similar images to a
query image I using a color space reduced to D bits is as follows:
1. Compute the reduced color histogram of I
a. Reduce the pixel values by applying (8-D) right bit shifts for each channel R, G, B.
i. R' = R >> (8-D)
ii. G' = G >> (8-D)
iii. B' = B >> (8-D)
b. The number of bins in the histogram H will be N=2D * 3
c. Count how many pixels of each color are contained in I to obtain histogram H. The
histogram H is an array of N elements.
CSI 2120 page 3
_________________________________________________________________________________________________
i. The index of the histogram bin corresponding to color [R',G',B'] can be computed
as (R' << (2 * D)) + (G' << D) + B)
d. Normalize H such that the values of all its bins sum to 1.0
2. Compare H with all pre-computed histograms in the image set.
a. This comparison is done using histogram intersection
b. Returns the K images with distances the closest to 1.0
Programming
You have to write programs under different paradigms that solve different versions of this problem. You
will receive specific instructions for each language.
Each program will be marked as follows:
Program produces the correct result [3 points]
Adherence to programming paradigm [2 points]
Quality of programming (structures, organisation, etc) [1 point]
All your files must include a header showing student IDs and names of the group members.
All files must be submitted in a zip file.
CSI 2120 page 4
_________________________________________________________________________________________________
Dataset
• You have access to a dataset of images. The images are provided in jpg format. The histogram of
each image in this dataset has been computed (3 bits per channel) and saved in a text file.
• We also give you 16 query images. You will have to find the 5 most similar images to each query
images. The query images are provided in jpg and ppm format, you can use one or the other.
CSI 2120 page 5
_________________________________________________________________________________________________
1. Object-oriented part (Java) [6% of your final mark]
Since this solution must follow the object-oriented paradigm, your program must be composed of a set of
classes. Specifically, it must include, among others, the classes listed below.
In addition to the source code of your solution, you must also submit a document that includes a UML
diagram of all your classes (showing attributes, associations and methods). Do not use static methods,
except for the main function. This document must also cite all references used to build your solution.
• The SimilaritySearch class
o that contains the main method
▪ you must specify the image filename, the image dataset directory
• java SimilaritySearch q01.jpg imageDataset2_15_20
▪ you can assume that the histograms of the image dataset have been pre-computed
▪ however, you must compute the histogram of the query image
▪ you can assume that the search is done on 3-bit color reduced images but make
your program as generic as possible (no hard-coding of the depth value except in
the main method).
▪ The program must print the name of the 5 most similar images to the query image
• The ColorImage class that includes
o A constructor that creates an image from a file
▪ public ColorImage(String filename)
▪ you can read the image from the jpg or the ppm format (just choose one format)
• you can use the JMF Java API to read jpg images
• the ppm format is just a text file with the RGB values listed
▪ the pixel values of the images are stored in an array representation of your choice
(to be described in the submitted document)
o The following image attributes (and the corresponding getter methods)
▪ int width
▪ int height
▪ int depth (the number of bit per pixel)
o A getPixel method that returns the 3-channel value of pixel at column i row j in the
form of a 3-element array
▪ public int[3] getPixel(int i, int j)
o A reduceColor method that reduces the color space to a d-bit representation
▪ public void reduceColor(int d)
CSI 2120 page 6
_________________________________________________________________________________________________
• The ColorHistogram class that includes
o A constructor that construct a ColorHistogram instance for a d-bit image
▪ public ColorHistogram (int d)
o A constructor that construct a ColorHistogram from a text file
▪ public ColorHistogram (String filename)
o A setImage method that associate an image with a histogram instance
▪ public void setImage(ColorImage image)
o A getHistogram method that returns the normalized histogram of the image
▪ public double[] getHistogram()
o A compare method that returns the intersection between two histograms
▪ public double compare(ColorHistogram hist)
o A save that saves the histogram into a text file
▪ public void ColorHistogram (String filename)
o plus any other classes, methods or attributes you judge necessary
CSI 2120 page 7
_________________________________________________________________________________________________
2. Functional programming part (Scheme) [6% of your final mark]
For this part of the comprehensive assignment, we ask you to implement the Image Similarity Search
algorithm following the functional paradigm. Refer to the general problem description section for the
algorithmic steps.
The requirements are the same as for the Object-oriented part, except that, this time, you do not have to
generate the histograms of the query images. You can use the histogram files that you have generated
using your Java program.
You must create the following function in order to start your program:
(similaritySearch queryHistogramFilename imageDatasetDirectory)
This function should return the name of the 5 most similar images to the query image. You will obviously
have to create other functions. Remember that under the functional paradigm, it is much better to create
several short functions than few long ones.
Submit your project in a zip file containing the scheme functions file and a document listing the functions
you have created, and the output obtained for each of the query image. This document must also cite all
references you may have used to build your solution.
All your Scheme functions must have a header describing what the function does, the input parameters
and the output.
You are not allowed to use functions terminating by ! (such as the set! function) and you must not use
iterative loops, use recursion instead.
CSI 2120 page 8
_________________________________________________________________________________________________
3. Concurrent programming part (Go) [6% of your final mark]
For the concurrent part of the comprehensive assignment, we ask you to program the image similarity
search algorithm using multiple threads. To make it more computationally expensive, your program will
have to compute all histograms (from the query and database images) each time you perform a query.
Your go program is executed with the following arguments:
> go run similaritySearch queryImageFilename imageDatasetDirectory
Note: os.Args provides access to the command line arguments.
Reading a jpeg image
Fortunately, if you look at the Go documentation about the image package, https://pkg.go.dev/image, you
will find an example showing how to compute the histogram of an image. This is not exactly what you
have to do but this is a great starting point. A slightly modified version of this example is provided; it has
the signature of the histogram Go function you will have to write.
type Histo struct {
 Name string
 H []int
}
func computeHistogram(imagePath string, depth int) (Histo, error)
This function computes the histogram of the specified jpeg image and reduces it to the number of bits
given by the depth parameter. The starting code is relatively easy to follow, one thing to notice is that the
pixel values of images in Go are store in uint32 and you must right-shift the bits of each channel by 8
positions to get the correct range (0 to 255). Check the provided code, it simply displays the RGB values
of an image.
You will also need a function that computes the histograms of a slice of image filenames.
func computeHistograms(imagePath []string, depth int,
 hChan chan<- Histo)
When a histogram is computed, it is sent to the given channel.
CSI 2120 page 9
_________________________________________________________________________________________________
The main function
Your main function must perform the following operations:
1. Create the channel of histograms;
2. Get the list of all image filename in the dataset directory;
3. Split this list into K slices and send each slice to the go function computeHistograms;
4. In a separate thread, open the query image and compute its histogram
5. Read the channel of histograms
a. When a histogram is received compare it to the query histogram
b. Based on the similarity results, maintain a list of the 5 most similar images
6. Once all images have been processed, print the list of the 5 most similar images.
7. Close all channels and make sure all threads are stopped before the program terminates.
Experiments
In order to determine the optimal configuration for your concurrent algorithm, we ask you to perform the
following experiments and report the execution time for each case:
• K=1
• K=2
• K=4
• K=16
• K=64
• K=256
• K=1048
Create a graph showing running time versus number of threads (use the average running time for all
queries). Do not forget to not print text to the console while you are estimating running time, this would
considerably slow down your program. Also specify the operating system and the specifications of your
processor (including the number of cores). You can also add your own experiences with other
configurations. Remember that your program must compute all histograms (from query and dataset
images), do not use the pre-computed histogram text files.
In addition to your source code, you must submit a document showing the results of your experiments.
CSI 2120 page 10
_________________________________________________________________________________________________
4. Logical programming part (Prolog) [6% of your final mark]
For this last part of the comprehensive assignment, you have to implement the Image Similarity Search
algorithm following the logic programming paradigm. Refer to the general problem description section
for the algorithmic steps.
The requirements are the same as for the other parts, except that, this time, you do not have to generate
the histograms of the images. You can use the histogram text files for both the query and dataset images
that are provided.
You must create the following predicate that solves this problem as follows:
?- similarity_search('q00.jpg.txt',S).
S = [('2144.jpg.txt', 0.8799533333333334), ('1998.jpg.txt',
0.86362), ('3538.jpg.txt', 0.79226), ('3920.jpg.txt', 0.77334),
('4923.jpg.txt', 0.76828)] .
(note that the solution shown is not correct, it is only provided to demonstrate the format of the solution).
We give you a starter project that includes most of the predicates required. In particular, the one that reads
a histogram file and returns a list will be very useful.
?- read_hist_file('q00.jpg.txt',H).
H = [2715, 22, 0, 0, 0, 0, 0, 0, 2|...] .
The one that generates the list of text files in a directory is also useful.
?- dataset(D),directory_textfiles(D,L).
D = 'C:\Users\Documents\imageDataset2_15_20\',
L = ['1000.jpg.txt', '1001.jpg.txt', '1003.jpg.txt', '1004.jpg.txt',
'1005.jpg.txt', '1006.jpg.txt', '1007.jpg.txt', '1008.jpg.txt',
'1009.jpg.txt'|...].
Note how the dataset directory path is provided through the predicate dataset/1.
CSI 2120 page 11
_________________________________________________________________________________________________
Finally, we also provide you with the predicate that performs the high-level algorithm.
similarity_search(QueryFile,DatasetDirectory, DatasetFiles,Best):-
 read_hist_file(QueryFile,QueryHisto),
%1.
 compare_histograms(QueryHisto, DatasetDirectory,
 DatasetFiles, Scores), %2.
 sort(2,@>,Scores,Sorted), %3.
 take(Sorted,5,Best). %4.
As you can see, this predicate first read the histogram file of the query image (read_hist_file/2). It then
compares this histogram with all the histograms in the list of histogram files (compare_histograms/4) by
producing a list of (HistogramFilename,Score) pairs. The next step sorts the obtained list (sort/4) from
which the first 5 pairs are extracted (take/3).
Read this Prolog file carefully and implement the missing predicates.
Submit your project in a zip file containing the well-commented Prolog predicates; all your Prolog
predicates must have a short header describing what the predicate does and its parameters. Also include a
document showing the output obtained for each of the query image.
CSI 2120 page 12
_________________________________________________________________________________________________
Rules
You can do this assignment in a group of two to learn team work. Make sure you collaborate both in
thinking and brainstorming about this problem and programming with your partner. Any similarity
between your programs to other groups is considered plagiarism. Yes, if you do not like team work, you
can do it alone. Do not use any code or program from the Internet because it is also considered plagiarism.
See the university policies for plagiarism in the following link.
https://www2.uottawa.ca/about-us/provost
Important Note: Using ChatGPT is strictly forbidden, if your TA sees that your code comes from
chatGPT it, you will receive 0 for all parts of this project immediately.
Measures that we take to detect plagiarism
Teaching assistants have been instructed to report to the professor any suspicion of plagiarism
they find when they mark assignments.
If plagiarism has been detected in any part or in the whole assignment, the professor will take
appropriate measures. Recall that it is equally bad to copy a solution and to let someone else
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp












 

標(biāo)簽:

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:AI6126代做、Python設(shè)計程序代寫
  • 下一篇:代做ICS4U、代寫 java 程序語言
  • 無相關(guān)信息
    昆明生活資訊

    昆明圖文信息
    蝴蝶泉(4A)-大理旅游
    蝴蝶泉(4A)-大理旅游
    油炸竹蟲
    油炸竹蟲
    酸筍煮魚(雞)
    酸筍煮魚(雞)
    竹筒飯
    竹筒飯
    香茅草烤魚
    香茅草烤魚
    檸檬烤魚
    檸檬烤魚
    昆明西山國家級風(fēng)景名勝區(qū)
    昆明西山國家級風(fēng)景名勝區(qū)
    昆明旅游索道攻略
    昆明旅游索道攻略
  • 短信驗證碼平臺 理財 WPS下載

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 kmw.cc Inc. All Rights Reserved. 昆明網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    美女扒开腿免费视频_蜜桃传媒一区二区亚洲av_先锋影音av在线_少妇一级淫片免费放播放_日本泡妞xxxx免费视频软件_一色道久久88加勒比一_熟女少妇一区二区三区_老司机免费视频_潘金莲一级黄色片_精品国产精品国产精品_黑人巨大猛交丰满少妇
    国产亚洲色婷婷久久| 日本一二三不卡视频| 久久久精品视频免费观看| 潮喷失禁大喷水aⅴ无码| 久久久久无码国产精品一区李宗瑞 | 日韩少妇一区二区| 中文字幕国产专区| 国产呦小j女精品视频| 亚洲av成人无码一二三在线观看| 卡通动漫亚洲综合| 中文字幕欧美激情极品| 亚洲国产欧美视频| 久久精品综合视频| 男女男精品视频网站| 在线精品视频播放| 熟女少妇a性色生活片毛片| 日韩成人av影院| 久久久久亚洲av片无码| 人妻一区二区视频| 午夜剧场免费看| 精品人妻伦九区久久aaa片| 国产美女永久免费无遮挡| 佐佐木明希电影| 青花影视在线观看免费高清| 欧美18—19性高清hd4k| 天天插天天射天天干| 国产视频精品视频| 老妇女50岁三级| 亚洲自拍偷拍一区二区| 欧美黄色一级生活片| 成人免费黄色小视频| 日本三级日本三级日本三级极| 色天使在线视频| 精品女人久久久| 日本三级日本三级日本三级极| 国产免费一区二区三区网站免费| 小嫩苞一区二区三区| 久久黄色一级视频| 国产激情在线免费观看| 校园春色 亚洲| 亚洲第一香蕉网| 欧美熟妇另类久久久久久多毛| 无码h肉动漫在线观看| 欧美老熟妇一区二区三区| 女~淫辱の触手3d动漫| 免费国产羞羞网站美图| 黄瓜视频污在线观看| 少妇伦子伦精品无吗| 永久av免费网站| 在线免费播放av| 一区二区在线免费观看视频| 亚洲a∨无码无在线观看| 五级黄高潮片90分钟视频| 亚洲一区和二区| 99riav国产精品视频| 永久免费看mv网站入口| 精品无码一区二区三区| 熟妇人妻久久中文字幕| 精品国产乱码久久久久久鸭王1| 国产精品久久免费观看| 四虎永久免费在线观看| 精品人妻无码一区二区三区| 性久久久久久久久久久| 日韩成人av影院| 91人人澡人人爽| 国产ts在线观看| www.17c.com喷水少妇| 亚洲乱妇老熟女爽到高潮的片| 国产sm在线观看| 天天躁夜夜躁狠狠是什么心态| 中文字幕乱妇无码av在线| 亚洲一区二区三区蜜桃| 男人与禽猛交狂配| 少妇真人直播免费视频| 性色av浪潮av| 黄色a一级视频| 亚洲精品一区二区三区在线播放| 亚洲精品鲁一鲁一区二区三区| 亚洲做受高潮无遮挡| 被黑人猛躁10次高潮视频| 少妇愉情理伦三级| 久久精品国产亚洲AV熟女| 神马久久久久久久久久久| 久久久精品少妇| 91在线播放观看| 稀缺呦国内精品呦| 黄色国产在线观看| 国产精品国产三级国产专业不 | 亚洲无人区码一码二码三码| a级一a一级在线观看| 亚洲自拍偷拍图| 18深夜在线观看免费视频| 成人免费无码大片a毛片| jizz18女人高潮| 日本r级电影在线观看 | 国产国语性生话播放| 国产精品扒开腿做爽爽| 一区二区三区影视| 国产污在线观看| 小早川怜子久久精品中文字幕| 日日骚一区二区三区| 黄色性生活一级片| 小泽玛利亚一区二区免费| 中文字幕第3页| 日韩一级片大全| 一级特黄曰皮片视频| 水蜜桃av无码| 色哟哟免费视频| 久久久久久久久久97| 国产av自拍一区| 国产日韩视频一区| 国产又爽又黄网站| 色一情一交一乱一区二区三区 | xxxwww国产| 99热这里只有精品2| 亚洲天堂久久新| 精品1卡二卡三卡四卡老狼| 国产裸体视频网站| 制服丝袜在线第一页| 人妻 丝袜美腿 中文字幕| 久久人妻少妇嫩草av蜜桃| 一区二区三区四区影院| 日韩a级片在线观看| 国产精品精品软件男同| 99热在线观看精品| 农村黄色一级片| 一级特级黄色片| 99久久久无码国产精品性| 亚洲一级片在线播放| 无码人妻精品一区二区三区夜夜嗨| 欧美一级片在线免费观看| h色网站在线观看| av地址在线观看| 看全色黄大色黄女片18| 中文字幕三级电影| 中文字幕第3页| 51妺嘿嘿午夜福利| 天堂网中文在线观看| 国产午夜精品理论片| 四虎免费在线视频| 国产a级黄色片| 国产精品扒开腿做爽爽| 国产精品久久久久久久av| 99在线视频免费| a级片在线观看免费| 日本黄色动态图| 天美传媒免费在线观看| 草视频在线观看| 在线观看国产免费视频| 亚洲欧洲综合网| 成人性生活免费看| 国产破处视频在线观看| 在线观看xxx| 国产肥白大熟妇bbbb视频| 无码黑人精品一区二区| 精品国产一区在线| 在线观看亚洲大片短视频| 亚洲妇女无套内射精| 久久久久久亚洲中文字幕无码| 午夜精品一区二区三级视频| 亚洲天堂美女视频| 老熟妇高潮一区二区三区| 88av在线播放| 9.1人成人免费视频网站| 级毛片内射视频| 久久久久无码国产精品一区李宗瑞 | 亚洲а∨天堂久久精品2021| 亚洲天堂一级片| 国产熟妇搡bbbb搡bbbb| 粗大的内捧猛烈进出视频| www.99热| 欧美黄色激情视频| 中文字幕影片免费在线观看| 日本一区二区三区在线免费观看| 人妻在线日韩免费视频| 中文字幕在线观看91| 深夜视频在线观看| 亚洲成人激情小说| 亚洲成人生活片| 男女羞羞免费视频| 久久久久99精品成人片试看| 搜索黄色一级片| 国产极品国产极品| 国产探花在线播放| 日韩在线免费观看av| 日韩精品――色哟哟| 午夜诱惑痒痒网| 国产裸体视频网站| 成人一区二区三区仙踪林| 免费看黄色的视频| 极品白嫩的小少妇| 美女搡bbb又爽又猛又黄www| 911亚洲精选| 欧类av怡春院| ass精品国模裸体欣赏pics| 黄色工厂在线观看| 亚洲一级中文字幕| 亚洲а∨天堂久久精品2021| 亚洲不卡的av| 日本天堂中文字幕|