首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
辅导GUI application、讲解data留学生程序、c/c++编程语言调试 辅导Web开发|辅导留学生Prolog
项目预算:
开发周期:
发布时间:
要求地区:
Tom Kelly (MS Teams)
Coursework 3: The Process
Date set: 23.11.20
Date due: 18.12.20
Weighting: 50%
Goals for this CW:
Experience agile software lifecycles in a collaborative environment
Evaluate, design, and develop a complex GUI application in Qt
Getting started:
Before the first meeting, everyone should get the Tomeo prototype
running.
Watch the introductory video.
Download the.zip file (right click...download) and open the
.pro project in Qt Creator.
!!Beware: this program shows flashing videos!!
Run the project. When a dialog pops up, click yes to open a
link to OneDrive and download the video files. Extract the
videos and set the absolute path of the videos directory as the
first command line argument to the project.
Run the initial Tomeo prototype in Qt Creator, explore its
(limited and buggy) functionality.
Make a note of any issues you observe with the usability of the initial
prototype.
Explore the code. In particular note the following classes, and read
any Qt documentation you need to:
tomeo.cpp: contains the main method and creates a list of
video files that have thumbnails.
the_button.cpp: a subclass of QPushButton which shows
the icon, and has a signal (jumpTo) that is fired when someone
clicks it.
the_player.cpp: a subclass QMediaPlayer which controls
the playback of the video in the QVideoWidget class.
Your task:
Your group will improve the Tomeo prototype for the following market
segment:
Outdoor enthusiasts who want to explore and organise a large personal
video library. This group collects massive quantities of video from
action cameras (e.g. GoPro), video drones (e.g. DJI Mavic), and mobile
phones (e.g. slow-motion footage from an iPhone). The video is
typically from a variety of locations, is of different lengths (ranging from
a "moving photo" of a few seconds to 3 hours of raw skiing footage),
and activities (e.g. cycling, parascending, football, or skiing).
Arrange a first meeting time with your group members.
your group should have 4 or 5 people in it
select an empty group in Minerva and each of the group
should sign up
If you need to be removed from a group, email Tom and
remember to give the group number to be removed from.
In the first meeting:
Exchange contact details with your group members, set up a
shared code repository (e.g. git, GitLab, Github….), and a
shared process document (e.g. Office 365, Google docs….).
Arrange a weekly time to meet and update each other on your
progress.
Explore the initial Tomeo prototype together.
Discuss the requirements of users from the market segment.
For this coursework you should invent realistic requirements
rather than gathering data yourself:
perform a PACT analysis to scope the problem space
write a persona to represent your users
write two scenarios which detail use-cases for the
persona
personas and scenarios should be realistic but
fictional
You will then complete at least 3 development cycles of the Tomeo
application before the due date above. For this coursework, one cycle
consists of:
i. prototyping a new design
ii. evaluating the prototype
iii. implementing desired changes to the application
You will create a process document detailing the design process with
the following structure:
1. the members of your group and their usernames.
2. the PACT analysis, persona (one paragraph), and two use
scenarios (one paragraph per scenario) which refine your
requirements.
3. the platform you are targeting (desktop, mobile, web, etc…).
All our development will take place with Qt and C++, but we can
design for other hardware / software.
4. a title and description of each cycle in the following format
(compare i-iii above):
i. prototype
a. one paragraph describing the goal of this
cycle.
b. the name of the prototyping technique and any
software used (technique: sketch, paper,
native…. software: Photoshop, Gimp, Qt
Designer, etc…)
c. one paragraph motivating the design shown in
your prototype.
d. one paragraph giving the reason for the
chosen technique.
e. evidence of the design (a photo, screenshot, a
video of a paper prototype, etc...)
ii. evaluation
a. the name of the evaluation technique used
(heuristic evaluation, cognitive walkthrough,
questionnaire, interview, etc...)
b. one paragraph describing why this technique
was chosen.
c. one paragraph describing the outcomes of the
evaluation.
d. evidence of the evaluation (a table of the
results, a video of the interactions, etc...)
iii. code
a. a video illustrating the changes compared to
the previous version.
b. a link to a code repository with the developed
code for this cycle (e.g. for Github this could be a
link to a tag, or press 'y' on the github project
page to get a link to the current commit).
c. one paragraph describing any differences
between the prototype and the implementation
because of the evaluation or technical difficulties.
e. An ethics statement, explaining how you complied with the
university regulations for ethical research on humans. Include
the information sheets and consent form(s) any participants
2020/11/25 https://minerva.leeds.ac.uk/bbcswebdav/pid-8263077-dt-content-rid-17887531_2/courses/202021_34881_XJCO2811/swjtu_CW3TheProcess.html
https://minerva.leeds.ac.uk/bbcswebdav/pid-8263077-dt-content-rid-17887531_2/courses/202021_34881_XJCO2811/swjtu_CW3TheProcess.html 3/4
have completed (do not include the completed forms
themselves).
Notes:
Ask questions on MS Teams channels as usual.
The paragraph limit on documentation is intended to make you
choose your language and conclusions carefully. A paragraph is
typically 1-2 sentences giving a statement, followed by 6-8 sentences
supporting the statement.
Supporting statements should make use of the terminology and
theory you have learnt in the module.
Note that our emphasis here is not on writing code or the final output.
We care (and award marks for) the design process you go through. It is
acceptable to abandon the result of a cycle if there is a well argued
reason.
You can run different cycles in parallel (at the same time) to spread
the work, as long as the cycles can be merged into a single code base
if successful. For example:
different people could perform parallel cycles to prototype,
evaluate, and code the layout of the home screen - as long as
the best implementation is merged.
different components could be built by different pairs of
people - a dialog box could be a parallel cycle to the main
screen layout.
Video evidence should be less than 45 seconds long. Include your
videos in the zip files uploaded to minerva.
Be sure to obtain permission to include people in videos. Find
alternatives if they do not want to be recorded (e.g. a transcript, voice
only, etc…)
We do not care about the quality of the videos (noise, camerawork
etc… are beyond the scope of this assignment). But they should be
understandable on a first viewing when the accompanying paragraph is
read.
Check all the links in your document before submission.
Code guidelines:
comment your code with single-line comments (using //)
such that someone familiar with C++ and this coursework
description (i.e. the person doing the grading) is able to follow it.
indentation and braces as per 1TBS.
class names begin with capital letters,
variable names begin with lower-case letters.
constant globals to begin with a lower-case 'k'.
function length should be limited to 50 lines (excluding empty
lines and comments).
line length should be limited to 100 characters.
there should be no unused (commented or inaccessible)
code.
Marks will be awarded for:
The quality of your PACT scoping analysis, scenario, and persona
design.
The quality of your evaluation and prototypes, as well as how well
they match your chosen scenario and persona.
The variety of evaluation and prototyping techniques applied.
Completing at least three cycles. Extension marks are available for a
fourth cycle.
Developing significant improvements to the Tomeo application which
match the persona and scenarios.
Following the code guidelines.
The quality of writing in your process document:
structure
arguments and supporting statements
application of a wide range of user experience theory (as
taught in the module)
written English
Your ethics compliance documents
2020/11/25 https://minerva.leeds.ac.uk/bbcswebdav/pid-8263077-dt-content-rid-17887531_2/courses/202021_34881_XJCO2811/swjtu_CW3TheProcess.html
https://minerva.leeds.ac.uk/bbcswebdav/pid-8263077-dt-content-rid-17887531_2/courses/202021_34881_XJCO2811/swjtu_CW3TheProcess.html 4/4
Contribution:
All members of the group will get the same mark, unless...
...all members of the group agree to a different mark split. To do this,
include this form in your submission. It must be signed by all group
members to be valid.
To submit:
You submission should be a zip file containing:
the PDF document in exactly the format detailed above
your final code which compiles and runs in QtCreator
optionally: a signed and scanned contribution form
Name your zip file for your usernames, e.g.:
scstke_scs20pop_sc12ghj_sc49ksh_sc88zxy.zip
A single member of your group should submit the zip file by the
deadline at the top of this page.
Submit your zip file using minerva.
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!