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

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

代寫CS-256、代做Java編程設計

時間:2024-02-29  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



DATED 2024-02-01 (minor revisions over previous draft)
PLEASE SEE LATEST VERSION ON CANVAS AS THIS ONE MAY CHANGE
CS-256 Visual Computing Assignment (only 1 assignment, worth 20% of module)
Date set : Friday 2nd February 2024 at 13:00
Deadline : Monday 4th March 2024 at 11:00
Viva booking: An Eventbrite link will be posted on Canvas closer to submission.
By submitting this coursework, electronically and/or hardcopy, you state that you fully understand
and are complying with the university's policy on Academic Integrity and Academic Misconduct. The
policy can be found at https://myuni.swansea.ac.uk/academic-life/academic-misconduct.
Guidance: A lot of guidance for this assignment will be given in the lectures and support will be given
in the assignment advisory classes.
Unfair Practice: Do not copy code from colleagues, internet or other sources. You may discuss
approaches together, but all coding must be your own. Presenting work other than your own at a viva
is plagiarism and a recipe for disaster. The application that you demonstrate must be the code
submitted to Canvas. To demonstrate code which is different to that submitted will count as Academic
Misconduct.
Aims
Understand how an image is stored internally, and how to manipulate the image
Translate useful graphics algorithms into working code
Improve your programming skills through self-study and a challenging assignment
Combine interaction with visual feedback
Practice presenting your work in a viva situation
Individuals or pairs
You may complete and submit the assignment as an individual or as a pair (two students working
together). If done as a pair, you must both attend the viva at the same time and indicate that your
submission is joint (so you both get the marks). Do not do it in a team of more than two people. Do not
split as a team once you have decided to work together as your solutions may be duplicates.
Files:
The supporting framework is written in Java. You may use and build on this framework. If you wish to
carry out the coursework in a different language you may do so, but there will be no provided
framework. You will be required to demonstrate your working program on 7/3/2024 or 14/3/2024.
You will require a copy of the Java template downloaded from Canvas. It demonstrates how to display
and manipulate images, with functions that will help you with the exercise.
[Note: You should not redistribute the template code anywhere – you will not have permission to do that]
Assignment Summary:
1. Implement Gamma correction [30 marks]
2. Implement image resizing [30 marks]
3. Implement cross correlation [40 marks]
You do not have to do the assignment in the above order.
Exercise Details:
1. Implement Gamma correction
This should be done using the gamma correction equation, and for full marks, using the look
up table approach. This can be accomplished by watching the "coding Gamma correction"
video. Every student should be able to get 30% by watching and following the coding in the
video and using the provided base code. It is OK if your code is like mine in the video.
2. Image resizing
Implement image resizing using nearest neighbour interpolation and bilinear interpolation.
There are also details about how to do this in the “coding Gamma correction” video. I go as far
as demonstrating code for nearest neighbour interpolation. This (with Gamma correction) is
enough to get 45% on the assignment.
3. Cross correlation with Laplacian
Implement the cross correlation (weighted sum) of a filter with a pixel (and its neighbourhood)
as a function and use that for all pixels in the image to create the intermediate image.
Implement normalisation on an intermediate image to create a new cross-correlated and
normalised image for display. Use the following filter as input. This will achieve the full marks
for this part. You can further experiment with passing different filters (e.g., you could have a
radio button that switches between different filters). This would not attract further marks,
but you may like to do it as a challenge and to understand this part of the course more deeply.
5x5 Laplacian Matrix:
-4 -1 0 -1 -4
-1 2 3 2 -1
 0 3 4 3 0
-1 2 3 2 -1
-4 -1 0 -1 -4
Or this may be more useful for copy and paste:
{
{-4,-1, 0,-1,-4},
{-1, 2, 3, 2,-1},
{ 0, 3, 4, 3, 0},
{-1, 2, 3, 2,-1},
{-4,-1, 0,-1,-4}
};
Video
There is a video of an example solution available on Canvas.
Mark distribution vs. time
The time taken to do each part is variable, and depends on your skills. The marks may or may not
represent the time you spend on each item. Gamma correction is easier than image resizing, but has
equal marks. This acknowledges start up time and encouragement to progress to something that
works to hand in.
Submission Requirements:
You will demonstrate your working program to me, or a post-graduate at times you will book using an
Eventbrite link I will send. These will be in the assignment advisory slots of 7th March and 14th March).
Submit your assignment through Canvas by the deadline at the top of this document. If you have
several files, place them in a ZIP). The coursework is worth 20% of this module. There is only 1
coursework. It is marked at the viva. You will get zero marks if you do not do the viva (even if you
submitted something on time). You will get zero marks if you do not make a submission (even if you
try to do the viva). You only get marks if you do both the on-time submission and the viva. If you
worked as a pair, you will only get marks if you both attend the viva.
Academic misconduct:
This is important. Each year a student will try to present code they don’t understand – don’t be that
student. A simple question like “Why did you do that” or “What does that do” should not stump you.
An assignment is not something to get through with minimal work. We aim to stretch you and give you
practise for your future academic work (e.g. third year project) and preparation for your future career.
Marking scheme
Note, if you cannot answer questions about your code (or have limited understanding of it), the
marks will be reduced (sometimes down to zero).
Understanding can be tested using questions like: How is this implemented, how are the other parts
implemented, what does this bit of code do? Appropriate marks will be deducted from each part if
the you cannot describe your own code. Just reading comments out is insufficient and marks should
be deducted. All in code comments must be in English.
1. Implement gamma correction [30 marks]
For each pixel the colour of the pixel is fetched, the gamma correction equation is applied to
each colour channel, and the colour is copied back to the pixel. The value for gamma correction
is obtained using a floating point slider. Values between 0.1 and 3.0 seem reasonable where 1.0
has no effect and could be the starting point. Values greater than 1.0 will make the image
brighter, and values less than 1.0 make it darker if implemented correctly. This can be seen from
the equation. It is OK if the code is the same as my example code for Gamma Correction. The
full 30 marks is for using the look up table approach.
2. Image resizing [30 marks]
Nearest neighbour interpolation is also presented in the coding video. You will probably have
a listener on the resizing slider that will call the resizing code with the desired image scaling
factor. In the resizing function, you will create an image of the correct new size. For each pixel
in the new image, work out where the pixel should be sampled from on the old image. This value
should be the floating point position. At this stage it would be good practice to call a function
that takes that sample position (as floats). The nearest neighbour sampling function will then
round down to the nearest integer and sample the image at that position (i.e., just get the colour
at that position). [15 marks]. Here is some advice for bilinear interpolation. You can choose to
follow it or do something else. A good approach would be to write the “lerp” function first that
takes two floating point values and the ratio between them, and returns the interpolated value.
Then write the bilinear function that carries out 3 lerps to find the correct sample value at a 2D
position. Both of these functions should be tested with known values to make sure they are
working. Then write a function that calls the bilinear function for each of the colour
components for the sample you wish to find. This can be called from the sampling function. [15
marks] (giving a total of 30 marks for part 2).
3. Cross correlation using Laplacian filter [40 marks]
A good approach will create the weighted sum function from the cross correlation definition
and pass in the filter to it. This can be called from a cross correlation function that will find the
weighted sum for each pixel and store it in the intermediate buffer. There will be a
normalisation function that will create an image that can be displayed from the intermediate
buffer.
Submission Procedure:
Submit the assignment through Canvas before the deadline. Demonstrate/viva your assignment
after the deadline at times to be notified.
The college policy for late submission will be used. The timestamp from Canvas will be used. I will
email students at their University account, so you must read this frequently during the term. You
might not be able to demonstrate/viva if you submit late.
If you have extenuating circumstances, follow the extenuating circumstances process. We will not
have a problem with making alternative arrangements for your viva if your EC period covers the viva.
But, if, as a result of extenuating circumstances, you get a one week extension, you must attend the
viva slots. The extension does not apply to the marking viva, only the submission date. You may
choose the later viva slot (14th March). If your EC applies to the whole period of submission and vivas
(e.g. 1st March to 15th March) we can make a special arrangement for the viva.
Individuals or pairs
If you do the assignment as a pair of students, please both submit the same code and indicate at the
head of the code that you worked as a pair and indicate the student number and name of both
students. Important: Make this clear at the viva.
To be clear, the same quality of solution submitted by a single student will get the same marks as the
same quality of solution submitted by a pair of students. There is no mark disadvantage for being in a
pair.
Both students in a pair will get the same marks unless you both agree that the marks should be
distributed differently. I don’t have a procedure yet for informing me of this because I presume this
would not happen, but if it does, then perhaps an email to me is best indicating the split. E.g., tell me
that one student gets 1.0 times the mark, and the other gets n times the mark where n<1. Then I will
multiply the full mark by n for the lower student, and the primary student gets the full mark.
FAQ
I’ve submitted the wrong version.
You can submit multiple times – I will mark the last version (submitted before the deadline).
Marks? (Marks are not feedback – see the next item).
Marks are provided at the demonstration/viva and very shortly after all vivas are complete in an
email to your University number email account. Therefore, it is possible for you to get marks within a
few days of the deadline if you select the earlier date.
Feedback: How does feedback improve my performance?
Feedback arises in several places within this course. Ahead of the submission you can show me and
teaching assistants your solution and ask us questions about it. This feedback is especially relevant
to improving your performance on the assignment. The feedback will directly increase your marks.
Obviously, post submission, the feedback will not improve your marks on the assignment. But it may
give you some ideas about areas you were stuck on which will help your future programming work on
other modules including the third year project.
Other feedback (separate from the assignment) includes you carrying out the practice course
examples and using the provided answers to self-evaluate. If you have difficulties, you can ask me to
cover the material in lecture and particularly the revision lecture.
Therefore, when it comes to questionnaires about feedback improving your performance, please
think about the feedback you can gain during the progress of the course and including selfevaluation against known answers, and not just the marks that are given once the assignment or
exam is over which will obviously have limited impact at that point to improve your performance.
Assignment Hints
I may add some hints to the assignment canvas web page in response to questions I get asked during
the first few weeks of term. The “Exercise Details” above gives some hints – e.g., 1. and part of 2., can
be done by watching the video and each other item gives some directions about how to do that part.
Also the marking scheme gives some more hints.
Changing the framework
Yes, you can change the framework. You can change the interface (hopefully to improve it). You can
use IDE’s to build an interface, so long as the key elements in the marking scheme are coded by you.
You can improve the interface and introduce more advanced features like contrast stretching, greyscale image, bicubic interpolation, etc. But none of this gets any marks in the above marking scheme.
Many students do this because they want their solution to be functionally better, to look nicer and
because they enjoy programming the assignment.
Existing libraries
A very few students use existing Java libraries to carry out image processing, like Gamma
Correction, image resizing and Convolution/Cross correlation Java Image libraries which all exist.
The whole point of the assignment is to program those functions yourself. If you use a library you will
get zero marks and I will draw your attention to this statement and the lectures where I mention this.
Suggested Schedule:
By 9/2/2024 Complete Gamma Correction question. This will include setting up your Java SDK,
JavaFX and IDE.
By 16/2/2024 Complete resizing question. Nearest neighbour is simply watching the video. The
bilinear will be where the real work starts.
By 23/2/2024 Cross correlation in progress. Aim to have tested code that can multiply the filter
weights against the pixels at a location and also create the intermediate array.
By 1/3/2024 Complete cross correlation and therefore complete the assignment, leaving the
weekend and Monday morning free for final polish, checks and submission. 

www.daixie7.com

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

掃一掃在手機打開當前頁
  • 上一篇:代寫CS257、c/c++編程設計代做
  • 下一篇:代寫股票指標 代編股票公式
  • 無相關信息
    合肥生活資訊

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

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    欧美综合激情| 久久久久国产精品www| 欧美国产亚洲一区| αv一区二区三区| 九九九九九精品| 一区二区三区视频在线播放| 欧美牲交a欧美牲交aⅴ免费下载| 国产精品自拍合集| 久久精品视频一| 欧美有码在线视频| 九九九九九九精品| 热re99久久精品国产66热| 国产高清精品一区| 日韩成人av电影在线| 久久一区免费| 天堂av在线中文| 国产福利精品av综合导导航| 亚洲国产日韩综合一区| 国产精欧美一区二区三区| 亚洲mm色国产网站| 久久综合色一本| 日韩国产高清一区| 色久欧美在线视频观看| 欧美在线国产精品| 久久久精品在线| 精品一区二区久久久久久久网站| 国产精品美女呻吟| 国产一区二区视频免费在线观看| 精品产品国产在线不卡| 福利精品视频| 亚洲电影一二三区| 久久av一区二区| 日本成人在线不卡| 国产精品沙发午睡系列| 精品视频一区二区在线| 最新中文字幕久久| 久久人91精品久久久久久不卡| 日本一区高清不卡| 国产精品无码专区av在线播放| 国产一区视频观看| 亚洲一区二区自拍| 久久久久久久久一区| 激情五月亚洲色图| 欧美激情精品在线| 91精品国产综合久久香蕉922| 日本精品一区二区三区四区| 国产精品丝袜视频| 国产主播喷水一区二区| 亚洲一区二区在线播放| 久久99欧美| 国产在线拍揄自揄视频不卡99| 欧美精品激情视频| 国产成人自拍视频在线观看| 欧美国产综合视频| 亚洲一区高清| 久久久999国产精品| 国产狼人综合免费视频| 日本高清一区| 欧美日韩国产999| 久久精品午夜一区二区福利| 国内精品一区二区三区四区| 亚洲成熟丰满熟妇高潮xxxxx| 色噜噜狠狠色综合网图区| 国产综合18久久久久久| 色女人综合av| 久久综合色88| 国产第一区电影| 国产日韩在线亚洲字幕中文| 亚洲精品电影在线一区| 国产精品福利无圣光在线一区| 99热在线国产| 黄色国产小视频| 岛国一区二区三区高清视频| 国产精品对白刺激| 国产成人97精品免费看片| 国产麻花豆剧传媒精品mv在线| 日韩国产在线一区| 欧美精品aaa| 国产成人久久婷婷精品流白浆| 99国产在线视频| 欧美日韩一区二区在线免费观看| 亚洲欧洲精品一区二区三区波多野1战4| 日韩中文字幕网站| www.av中文字幕| 免费精品视频一区| 日本久久久久久久| 亚洲图色在线| 不卡av在线播放| 久久久av一区| 久久久久久九九| 91九色丨porny丨国产jk| 国产人妻777人伦精品hd| 日本a级片在线播放| 亚洲综合精品一区二区| 国产精品成av人在线视午夜片| 久久久久一区二区| 久久久婷婷一区二区三区不卡| 国产免费高清一区| 蜜桃成人在线| 欧美日韩亚洲在线| 日韩视频第二页| 午夜精品一区二区三区av| 中文字幕一区二区三区四区五区六区| 国产精品成人v| 国产精品福利在线观看网址| 久久九九热免费视频| 久久久噜噜噜久久| 久久人人97超碰精品888| 99中文字幕在线观看| 国产九色91| 国产欧美日本在线| 国产一区二区三区在线免费| 国内精品在线一区| 蜜桃av噜噜一区二区三| 欧美 日本 亚洲| 欧美日韩精品免费看| 秋霞毛片久久久久久久久| 日韩视频在线观看国产| 日韩精品一区二区三区久久| 日韩免费观看网站| 日韩免费在线视频| 欧美一区亚洲一区| 欧美亚洲在线播放| 欧美 日韩精品| 国产自产精品| 国产伦精品一区二区三区照片| 国产欧美精品在线播放| 国产精品综合网站| 97人人澡人人爽| 国产高清一区视频| 日日狠狠久久偷偷四色综合免费 | 91精品国产综合久久久久久蜜臀| 北条麻妃在线一区| 91精品视频在线播放| 91黄在线观看| 91精品久久久久久久| 国产成人一区二区三区| 日日狠狠久久偷偷四色综合免费| 久久精品91久久香蕉加勒比| 国产精品欧美一区二区三区奶水| 国产精品美女www爽爽爽视频| 国产精品国产对白熟妇| 欧美激情在线观看视频| 亚洲国产日韩综合一区 | 91国内在线视频| 国产a级片免费看| 国产精品视频专区| 欧美精品videofree1080p| 亚洲色婷婷久久精品av蜜桃| 少妇免费毛片久久久久久久久| 日韩网址在线观看| 精品视频导航| 69**夜色精品国产69乱| 久久久精品国产| 制服诱惑一区| 日本不卡一区二区三区四区| 欧美日韩一区在线播放| 国产日本欧美一区二区三区| 久久久一二三四| 国产精品久久久久91| 亚洲一区二区在线播放| 青青青在线观看视频| 国产视频999| 久久免费一级片| 国产精品免费一区二区三区观看| 最新中文字幕久久| 奇米影视首页 狠狠色丁香婷婷久久综合 | 国产激情片在线观看| 久久精品亚洲精品| 亚洲一区二区高清视频| 欧美在线视频二区| 国产精品亚洲不卡a| 国产成人生活片| 亚洲色欲久久久综合网东京热| 欧美在线一级va免费观看| 成人www视频在线观看| www.日韩不卡电影av| 欧美精品一区二区三区国产精品| 性亚洲最疯狂xxxx高清| 激情五月五月婷婷| 久久乐国产精品| 精品国产一区三区| 人妻少妇精品无码专区二区| 高清一区二区三区四区五区| 久久久精品在线| 日韩中文字幕在线不卡| 国产一区 在线播放| 久久精品人成| 亚洲一区二区三区sesese | 久久99精品久久久久久青青日本 | 国产亚洲欧美另类一区二区三区| 久久久免费观看视频| 欧美猛少妇色xxxxx| 欧美亚洲激情视频| 国产精品91久久| 中文字幕制服丝袜在线| 国产综合精品一区二区三区| 日韩一区二区福利| 日韩尤物视频| 99三级在线|