国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫159.102、代做C++程序設計

時間:2023-11-24  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



159.102 Instructions for Assignment 3
Assignment 3 starts in Week 9 and is due in Week 11 (26 October 2023).
NOTE: Assignment 3 counts 10% towards your final result.
It is a good idea to put your name and ID number in a comment at the top of your program.
You have been given a contract by a factory that produces buttons. It is important that the factory
identifies damaged buttons so that they are not supplied to the stores. The factory has a camera that takes
a photo of buttons. The camera works only in black and white (no colour) and the resolution is not very
good, but that is not a problem.
Your job is to write a C++ program that identifies any damaged buttons in the photo. You need to
produce an image that displays a box around each button. If the button is damaged you must display a
red box and if the button is not damaged you must display a green box. Make sure you read carefully
through all the sections below.
Section A - input
The input to your program is the photo taken by the camera in the factory. This is available in a .ppm file
called Buttons.ppm. This file is available under Assessments on Stream. Do not edit this file in any way.
If you accidently modify the file then download a fresh copy of the file from Stream.
Your program must be able to work with any such photo. Do not assume a specific number of buttons.
Do not assume that buttons will always be in the same place in the photo. You can assume that buttons
are always the same basic size and that buttons will not be touching each other.
(Hint: Before starting on your program, check that the .ppm file has no errors. Download Buttons.ppm
from Stream and convert it to .bmp (or other format) and look at it. The display should look like this:
Just for interest – you can tell that the resolution of the camera is low because of the “stepped” edges to
the buttons in the image. Actually, for many problems of this type (i.e. identifying defects in products) it
is often better to use a black-and-white photo because the defects stand out more clearly.
2
Section B – understanding the problem
Like many “real-life” systems, this type of project can never be perfect (which is what makes real-life
projects interesting). We do the best we can by noting the following:
Notes about the problem:
1. Buttons appear as white (or light grey) objects on a dark background. This is a black-and-white
photo which means every pixel is a shade of grey (i.e. the R, G and B values are the same for each
pixel). We define a pixel to be part of a button if its R (or G or B) value is greater than 128.
2. There will always be a few pixels around the edge of a button (depending on the shadows) that are
darker than this and will thus not count as part of the button. This does not matter.
3. We need to know how to “identify” a button. Basically we look for pixels where the R value is
greater than 128. But we need more than this – see next section below.
4. To draw a box around a button you need to know the minimum and maximum x-value of all
pixels in the button and also the minimum and maximum y-value of all pixels. The box then has a
top left corner of (xmin, ymin) and a bottom right corner of (xmax, ymax) and so on.
5. Some thought needs to be given to how we define a “damaged” button. This is entirely up to you.
Hint: a damaged button will have less total pixels than an undamaged button.
Section C – the algorithm to identify a button in the image
A button consists of pixels with R value greater than 128 AND the pixels must touch each other. If we
work through every pixel, we can identify a button by:
a) finding a pixel with R value greater than 128
b) finding all other pixels that connect to that pixel (and have R value greater than 128)
c) go back to where we were in (a) and continue
The image below is trying to show this. Step (a) is shown in yellow. We start at the top left and work
steadily across and down the image until we find a suitable pixel. Step (b) is shown in red – we find all
pixels connected to the first one. Step (c) is shown in green – we go back to where we were at step (a)
and continue looking for pixels with R value greater than 128. Note that this diagram is to get the idea –
the drawing is not perfect.
Now let us look at step (b) in more detail – if we have one pixel in the button, how do we find the others?
3
Assume that we have found pixel A at location (x, y) with an R value of greater than 128. Thus we know
that pixel A is inside a button. We can then work through the pixels that touch pixel A (they are pixels B,
C, D and E). Note the locations of these pixels. Pixel B is in the same row of the image as pixel A so has
the same y value. But pixel B is one place to the left so it has a x value of x – 1. Pixel E is in the same
vertical column of the image as pixel A so has the same x value. But pixel E is one place further down
the screen so it has a y value of y + 1. Similarly for the other pixels.
Now that we know how to identify the “next door” pixels of pixel A, we have an algorithm as follows:
Find pixel A at location (x, y) and look for all connected pixels by:
Find pixel B at location (x – 1, y) and look for all connected pixels;
Find pixel C at location (x + 1, y) and look for all connected pixels;
Find pixel D at location (x, y – 1) and look for all connected pixels;
Find pixel E at location (x, y + 1) and look for all connected pixels;
This is a recursive algorithm – find the pixels connected to A by finding the pixels connected to B, etc.
While this may not look like the famous “caves” program, it is essentially the same situation. And we
have the same problem. We could develop an infinite loop where pixel A checks pixel B which checks
pixel A which checks pixel B, etc. And we solve the problem in the same way, i.e. we put a boolean into
each pixel and as soon as we have checked a pixel we exclude it from the search. Do not check that pixel
again.
Every recursive function needs a base case. In this case there are two which are:
- return if the pixel you are checking has an R values of 128 or less
- return if this pixel is excluded from the search (i.e. if this pixel has been checked before)
Some astute readers may have noticed that we are going on as if they are FOUR pixels next door to pixel
A when in fact there are EIGHT next door pixels. We left out the diagonal pixels. The reason for this is
that the recursion eventually works its way through all adjacent pixels. E.g. the pixel that is up and to the
left of A is also above B so will be checked when B is checked.
4
Section D – program design
There was another programmer who used to work at the factory. Unfortunately, that programmer did not
study 159.102 at Massey and was therefore unable to complete the project. You may find some
interesting ideas in the partially completed program which is called Ass3-start.cpp and is available under
Assessments on Stream.
Download the program called Ass3-start.cpp and study it.
You MUST use the class called pixel_class. Note that two of the methods are at the end of the program.
This class is as discussed in the notes but has an extra boolean variable called exclude to assist with the
recursive function. This exclude variable is set to false at the start of the program and is set to true if this
particular pixel has been checked.
You MUST use the following global variables:
int screenx, screeny, maxcolours;
pixel_class picture[600][600];
It is highly recommended that you also use the global variables:
int total, xmin, xmax, ymin, ymax; // these MUST be global
However, if you make the program work without these variables then you do not need to use them.
You MUST use the function called loadButtons exactly as it is in the program.
The rest is up to you. You can keep everything currently in the program or replace some of it as long as
you use the compulsory sections of code listed above.
The basic outline of the main program is as follows:
• load the photo data into the picture using the function loadButtons
• work through all pixels identifying buttons and placing boxes into the picture
• write the picture data to a new .ppm file
• (outside your program) convert your new .ppm file to .bmp and view it
Extra notes on drawing a box:
You draw a box (or in fact anything) by placing pixels of a particular colour into the picture.
A box needs four values called xmin, xmax, ymin, ymax.
The top left corner of the box is (xmin, ymin) and the top right corner of the box is (xmax, ymin).
The bottom left corner of the box is (xmin, ymax) and the bottom right corner of the box is (xmax, ymax).
To draw the top line of the box, use the following loop (or similar):
for (x = xmin; x <= xmax; x++) {
 picture[x][ymin].loaddata(R, G, B);
 picture[x][ymin].setexclude(true);
}
It is very important to set the exclude variable in each pixel to true. These pixels are now part of a box
and no longer part of the buttons image. They must be excluded from any future searches for buttons.
5
Section E – output
The output from your program is an image stored in a .ppm file. In order to view the image you will
probably need to convert it to a different format, e.g. a .bmp file.
The output image must show the buttons with boxes displayed around each button. The box must be red
if the button is damaged and green if the button is acceptable. It should look like this:
Oh dear, this image shows only green boxes. This is not the correct result.
Note 1: if you look very closely, you may see that some boxes do not perfectly sit around the button.
There may be one or two pixels on the “wrong side” of the green line. Do not worry about this. Do not
waste hours of time trying to get your boxes better than what is shown above. These boxes are perfectly
adequate to show which button is being referred to.
Note 2: you need to decide what defines a “damaged” button. Some buttons are obviously damaged,
others may be ok, not quite sure about that. Welcome to programming in the real world! As long as the
obviously damaged buttons are classified as damaged, that is ok. There may be one or two buttons that
some people may regard as damaged and other people may not. In the real factory, the “damaged”
buttons are checked by human experts before being discarded.
Some general notes about the assignments in 159.102
• You can find the assignment instructions in a file under Assessments and also the start week.
• You submit your assignments via Stream (under Assessments) before the due date and time
• The due date and time appear on the Assignment under Assessments (where you submit)
• Submit only your .cpp file
• Do not submit the .exe file or any data files or screen shots of the program running
6
• Staff are not available to check your assignment before you submit it.
• Do not rush into submitting an assignment. You may find useful information in the notes during
the week after the assignment starts.
• Assignments may use C++ knowledge from 159.101, 159.102 and elsewhere. However, if you
use knowledge from elsewhere, make sure you use it correctly.
IMPORTANT rules for assignments in 159.102
• You may get assistance when writing an assignment. Assistance includes asking questions and
getting ideas from teaching staff and other students. Assistance also includes asking for help
when your program is not working correctly and you cannot find the error.
• You may NOT get someone else to write your assignment for you. If you submit a program
written by someone else, you will lose a significant amount of the marks for the assignment.
• You may NOT copy a program from the internet. If you submit a program copied from the
internet you will receive ZERO marks for the assignment. It is very easy for markers to find the
same program on the internet.
• The important thing is that you must show that you understand what is happening in the program
you submit. Teaching staff will sometimes arrange zoom sessions with students to check that they
understand their submission. If this happens to you, please do not be offended – it is something
we have to do as part of the quality assurance for the course.
Working on your assignments in 159.102
• You need an editor/compiler to create and run your program. Atom is provided (see notes to
install Atom under Week 1) but you can use any other IDE that supports C++
• Build up your program, for example: start by only converting decimal to binary. When this is
working include binary to decimal. Then build in the error checking.
• Give yourself plenty of time. Do not start 6 hours before the deadline!
• Do not give up just because the deadline arrives. You will still get some marks for a partial
solution. In a difficult situation, you can apply for an extension.
Marking criteria for assignments in 159.102
Assignments are marked out of 10 and marks can be lost for:
• programs not compiling or running
• errors in code
• programs that have not been tested for a variety of situations
• programs that do not follow the instructions that are provided
• programs that appear to be written by someone else
• programs that are copied from the internet

請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:代寫COMP1711、c++編程語言代做
  • 下一篇:4CCS1CS1代做、代寫c/c++,Python程序
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    欧美区二区三区| 国产精品免费一区| 久久久国产视频91| 亚洲一区二区三区毛片| 国产一区香蕉久久| 国产成人精品一区二区三区福利| 亚洲精品在线免费看| 国产另类第一区| 国产精品成av人在线视午夜片| 欧美一区二区综合| 国产成人黄色av| 少妇久久久久久被弄到高潮| 成人精品在线观看| 久久综合久中文字幕青草| 免费在线观看日韩视频| 日韩在线免费高清视频| 亚洲啊啊啊啊啊| 99九九视频| 亚洲午夜高清视频| 国产精品一区二区久久| 久久中文字幕视频| 精品日韩在线播放| 久久国产色av| 国产精品主播视频| 一区二区三视频| 成人中文字幕在线观看| 在线播放 亚洲| 豆国产97在线| 亚洲一区二区免费| 久久免费成人精品视频| 亚洲成人av动漫| 成人国产一区二区三区| 一级黄色免费在线观看| 99精品在线免费视频| 亚洲精品永久www嫩草| 久久综合久久久久| 手机看片日韩国产| 色妞色视频一区二区三区四区| 青青草精品视频在线| 久久久久久久久久久久久国产| 日韩极品视频在线观看| 国产精品视频网址| 免费国产成人看片在线| 国产精品对白刺激| 国产伦精品一区二区三区四区视频_ | 日本精品性网站在线观看| 久久精品日产第一区二区三区| 日韩欧美电影一区二区| 国产成人精品无码播放| 韩国国内大量揄拍精品视频| 欧美精品免费在线观看| 成人av网站观看| 午夜精品一区二区三区四区| 久久久免费av| 黄色影视在线观看| 国产精品国产福利国产秒拍| 国产一区深夜福利| 亚洲爆乳无码专区| 久久久久久精| 国产欧美在线看| 午夜精品美女自拍福到在线| 国产成人精品久久久| 欧美激情视频一区二区三区| 精品福利影视| 国产高清视频一区三区| 欧美激情www| 亚洲天堂第一区| 久久国产一区二区| 国产一级不卡毛片| 色就是色欧美| 日韩视频在线免费| 国产免费一区二区视频| 色欲色香天天天综合网www| 国产精品三级在线| 97精品视频在线观看| 欧美综合第一页| 色综合91久久精品中文字幕 | 国内免费精品永久在线视频| 亚洲最大激情中文字幕| 久久国内精品一国内精品| 成人综合视频在线| 日韩欧美xxxx| 亚洲最大福利网站| 日韩最新免费不卡| 99久re热视频这里只有精品6| 欧美午夜精品久久久久免费视| 一卡二卡3卡四卡高清精品视频| 深夜福利一区二区| 99久久综合狠狠综合久久止| 欧美 国产 日本| 亚洲不卡一卡2卡三卡4卡5卡精品| 国产精品久久久久免费a∨大胸| 国产精欧美一区二区三区| 加勒比成人在线| 日本一级黄视频| 中文字幕在线亚洲三区| 国产精品美女久久久久av福利| 国产福利久久精品| 国产亚洲二区| 激情视频综合网| 日本精品va在线观看| 亚洲一区二三| 精品国产免费一区二区三区| 精品国产一区二区三区四区在线观看 | 久草精品电影| 91国产中文字幕| 国产裸体免费无遮挡| 欧美精品自拍视频| 日韩精品久久一区| 亚洲a∨一区二区三区| 欧美激情视频网站| 国产精品久久久精品| 久久久99久久精品女同性| 国产二区视频在线| 国产精品一区二区三| 麻豆一区区三区四区产品精品蜜桃| 人人妻人人添人人爽欧美一区 | 国产成人精品视频在线观看| 国产v综合ⅴ日韩v欧美大片| 国产一区二区丝袜| 激情深爱综合网| 欧美黄色直播| 精品人妻人人做人人爽| 欧美在线观看一区二区三区| 日韩xxxx视频| 日本免费一级视频| 少妇久久久久久被弄到高潮| 亚洲一区二区三区视频| 亚洲字幕一区二区| 亚洲精品中字| 亚洲国产精品综合| 亚洲在线一区二区| 夜夜爽www精品| 亚洲人久久久| 一本久道综合色婷婷五月| 九九热精品视频国产| 欧美精品xxx| 久久久久久国产精品美女| 久久99久久久久久久噜噜| 欧美成人性色生活仑片| 欧美激情伊人电影| 在线观看福利一区| 亚洲精品日韩激情在线电影| 亚洲欧洲日本国产| 亚洲精品一区二区三区蜜桃久| 大j8黑人w巨大888a片| 日本精品视频一区| 欧美日韩精品一区| 国产综合在线看| 麻豆一区区三区四区产品精品蜜桃| 国产主播在线看| 成人免费在线网| 久久精品国产理论片免费| 色偷偷88888欧美精品久久久 | 欧美一区二区三区免费视| 日本在线观看不卡| 欧美午夜视频在线| 国产日产欧美a一级在线| 99精品一区二区三区的区别| 国产成人一区二区三区电影| 国产精品免费久久久久影院 | 久久久97精品| 欧美激情亚洲一区| 日本一区二区三区视频免费看| 欧美一区二区在线视频观看| 国产三区二区一区久久| 久久综合久久网| 国产精品露出视频| 亚洲精品不卡| 日本国产欧美一区二区三区| 欧日韩在线观看| 国产精选一区二区| 久久久久久久激情| 欧美人与物videos| 日韩偷拍一区二区| 国产日韩一区二区在线观看| 99久久99久久| 午夜啪啪福利视频| 欧美一区三区二区在线观看| 国产欧美精品aaaaaa片| 国产av人人夜夜澡人人爽麻豆| 另类专区欧美制服同性| 三级三级久久三级久久18| 欧美中日韩一区二区三区| 国自在线精品视频| 久久久亚洲精品无码| 久久成人免费观看| 国产精品你懂得| 亚洲一区三区在线观看| 欧美日韩精品免费观看视一区二区| 成人免费视频97| 久久精品久久久久| 亚洲精品成人久久久998| 国内视频一区二区| 久久草视频在线看| 色中色综合影院手机版在线观看| 欧洲亚洲免费视频| 91精品网站| 欧美日韩第一视频| 欧美精品无码一区二区三区|