99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

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

代寫COP3502、Python程序設計代做
代寫COP3502、Python程序設計代做

時間:2024-10-23  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



 
P2: RLE with Images Python 
 
Overview 
 
In this project students will develop routines to encode and decode data for images using run-length encoding 
(RLE). Students will implement encoding and decoding of raw data, conversion between data and strings, and 
display of information by creating procedures that can be called from within their programs and externally. This 
project will give students practice with loops, strings, Python lists, methods, and type-casting. 
 
Run-Length Encoding 
 
RLE is a form of lossless compression used in many industry applications, including imaging. It is intended to 
take advantage of datasets where elements (such as bytes or characters) are repeated several times in a row in 
certain types of data (such as pixel art in games). Black pixels often appear in long “runs” in some animation 
frames; instead of representing each black pixel individually, the color is recorded once, following by the number 
of instances. 
 
For example, consider the first row of pixels from the pixel image of a gator 
(shown in Figure 1). The color black is “0”, and green is “2”: 
 
Flat (unencoded) data: 0 0 2 2 2 0 0 0 0 0 0 2 2 0_ 
 
Run-length encoded data: 2 0 3 2 6 0 2 2 1 0_. 
Figure 1 – Gator Pixel Image 
 
The encoding for the entire image in RLE (in hexadecimal) – width, height, and pixels - is: 
 
 
1E|**0**602220121F10721AF21092301210**60**308250 
 
\W/ \H/ \------------------------------------------PIXELS-----------------------------------------------/ 
 
Image Formatting 
 
The images are stored in uncompressed / unencoded format natively. In addition, there are a few other rules to 
make the project more tractable: 
 
 1. Images are stored as a list of numbers, with the first two numbers holding image width and height. 
 
 2. Pixels will be represented by a number between 0 and 15 (representing 16 unique colors). 
3. No run may be longer than 15 pixels; if any pixel runs longer, it should be broken into a new run. 
 
For example, the chubby smiley image (Figure 2) would contain the data shown in Figure 3. 
 
Figure 2 Figure 3 – Data for “Chubby Smiley” 
 
NOTE: Students do not need to work with the image file format itself – they only need to work with lists and 
encode or decode them. Information about image formatting is to provide context. Requirements 
 
Student programs must present a menu when run in standalone mode and must also implement several methods, 
defined below, during this assignment. 
 
Standalone Mode (Menu) 
 
When run as the program driver via the main() method, the program should: 
 
1) Display welcome message 
 
 2) Display color test (ConsoleGfx.test_rainbow) 
3) Display the menu 
4) Prompt for input 
 
Note: for colors to properly display, it is highly recommended that student 
install the “CS1” theme on the project page. 
 
 
There are five ways to load data into the program that should be provided and four ways the program must be 
able to display data to the user. 
 
Loading a File 
 
Accepts a filename from the user and invokes ConsoleGfx.load_file(filename): 
 
Select a Menu Option: 1 
 
Enter name of file to load: testfiles/uga.gfx 
 
Loading the Test Image 
 
Loads ConsoleGfx.test_image: 
Select a Menu Option: 2_ 
Test image data loaded._ 
 
Reading RLE String 
Reads RLE data from the user in hexadecimal notation with delimiters (smiley example): 
 
Select a Menu Option: 3 
 
Enter an RLE string to be decoded: 28:10:6B:10:10B:10:2B:10:12B:10:2B:10:5B:20:11B:10:6B:10 
 
Reading RLE Hex String 
Reads RLE data from the user in hexadecimal notation without delimiters (smiley example): 
 
Select a Menu Option: 4 
 
Enter the hex string holding RLE data: 28106B10AB102B10CB102B105B20BB106B10 
 
Reading Flat Data Hex String 
Reads raw (flat) data from the user in hexadecimal notation (smiley example): 
 
Select a Menu Option: 5 
 
Enter the hex string holding flat data: 
 
880bbbbbb0bbbbbbbbbb0bb0bbbbbbbbbbbb0bb0bbbbb00bbbbbbbbbbb0bbbbbb0 
 
Displaying the Image 
 
Displays the current image by invoking the ConsoleGfx.display_image(image_data) method. 
 
Displaying the RLE String 
 
Converts the current data into a human-readable RLE representation (with delimiters): 
 
Select a Menu Option: 7 RLE representation: 28:10:6b:10:10b:10:2b:10:12b:10:2b:10:5b:20:11b:10:6b:10 
 
Note that each entry is 2-3 characters; the length is always in decimal, and the value in 
hexadecimal! Displaying the RLE Hex Data 
 
Converts the current data into RLE hexadecimal representation (without delimiters): 
 
Select a Menu Option: 8 
 
RLE hex values: 28106b10ab102b10cb102b105b20bb106b10 
 
Displaying the Flat Hex Data 
Displays the current raw (flat) data in hexadecimal representation (without delimiters): 
 
Select a Menu Option: 9 
 
Flat hex values: 880bbbbbb0bbbbbbbbbb0bb0bbbbbbbbbbbb0bb0bbbbb00bbbbbbbbbbb0bbbbbb0 
 
Class Methods 
 
Student classes are required to provide all of the following methods with defined behaviors. We recommend 
completing them in the following order: 
 
1. to_hex_string(data) 
Translates data (RLE or raw) a hexadecimal string (without delimiters). This method can also aid debugging. 
 
Ex: to_hex_string([3, 15, 6, 4]) yields string "3f64". 
 
2. count_runs(flat_data) 
Returns number of runs of data in an image data set; double this result for length of encoded (RLE) list. 
 
Ex: count_runs([15, 15, 15, 4, 4, 4, 4, 4, 4]) yields integer 2. 
 
3. encode_rle(flat_data) 
Returns encoding (in RLE) of the raw data passed in; used to generate RLE representation of a data. 
 
Ex: encode_rle([15, 15, 15, 4, 4, 4, 4, 4, 4]) yields list [3, 15, 6, 4]. 
 
4. get_decoded_length(rle_data) 
Returns decompressed size RLE data; used to generate flat data from RLE encoding. (Counterpart to #2) 
 
Ex: get_decoded_length([3, 15, 6, 4]) yields integer 9. 
 
5. decode_rle(rle_data) 
Returns the decoded data set from RLE encoded data. This decompresses RLE data for use. (Inverse of #3) 
 
Ex: decode_rle([3, 15, 6, 4]) yields list [15, 15, 15, 4, 4, 4, 4, 4, 4]. 
 
6. string_to_data(data_string) 
 
Translates a string in hexadecimal format into byte data (can be raw or RLE). (Inverse of #1) 
 
Ex: string_to_data ("3f64") yields list [3, 15, 6, 4]. 
 
7. to_rle_string(rle_data) 
 
Translates RLE data into a human-readable representation. For each run, in order, it should display the run 
length in decimal (**2 digits); the run value in hexadecimal (1 digit); and a delimiter, ‘:’, between runs. (See 
examples in standalone section.) 
 
Ex: to_rle_string([15, 15, 6, 4]) yields string "15f:64". 
 
8. string_to_rle(rle_string) 
Translates a string in human-readable RLE format (with delimiters) into RLE byte data. (Inverse of #7) 
 
Ex: string_to_rle("15f:64") yields list [15, 15, 6, 4]. Submissions 
 
NOTE: Your output must match the example output *exactly*. If it does not, you will not receive full credit for 
your submission! 
 
File: 
Method: 
 
 
rle_program.py 
 
Submit on ZyLabs 
 
Do not submit any other files! 
 
Part A (5 points) 
 
For part A of this assignment, students will set up the standalone menu alongside the 4 requirements listed on 
page 2 of this document. In addition to this, students should also set up menu options 1 (loading an image), 2 
(loading specifically the test image), and 6 (displaying whatever image was loaded) in order to help grasp the 
bigger picture of the project. 
 
This involves correctly setting up the console_gfx.py file and utilizing its methods. You will use 
ConsoleGfx.display_image(...) to display images. Notice how it takes in a decoded list. This is the 
 
format in which you will locally (in your program) store any image data that you are working with. When 
the document mentions that something is “loaded” it means that something is stored as a list of flat 
(decoded) data. 
 
Part B (60 points) 
 
For part B of this assignment, students will complete the first 6 methods on page 3 of this document. They 
must match specifications and pass test cases on chapter 12.2 in Zybooks, which will be your means of 
submission for this part of the assignment. Your grade will be the score received on Zybooks. To guarantee 
functionality moving forward to part C, it is expected that you will receive full marks for this section. 
 
Part C (35 points) 
 
For part C of this assignment, students will now complete the final 2 methods on page 3 of this document as well 
as the remainder of the project involving the menu options and understanding how all the individual methods are 
intertwined with each other. You will submit your whole program including the 8 methods listed above and the 
main method in chapter 12.3 in Zybooks. We will only test your remaining 2 methods and the main method in 
part C. 


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





 

掃一掃在手機打開當前頁
  • 上一篇:代寫ECE 4122、代做C++編程語言
  • 下一篇:代寫SD6502、代做C++程序語言
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

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

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

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          9000px;">

                99精品一区二区| 日本亚洲天堂网| 色成年激情久久综合| 国产一区二区三区免费观看| 日韩在线一二三区| 夜夜精品视频一区二区| 自拍偷拍亚洲综合| 中文字幕在线观看不卡视频| 国产日韩av一区二区| 精品国产乱码久久| 欧美mv日韩mv国产网站app| 欧美精品成人一区二区三区四区| 91热门视频在线观看| 成人性生交大片免费看中文网站| 国产一区二区在线免费观看| 国产永久精品大片wwwapp| 麻豆成人91精品二区三区| 日韩精品1区2区3区| 秋霞午夜av一区二区三区| 国产九色精品成人porny| 日韩午夜激情电影| 亚洲免费在线电影| 精品国产乱码久久久久久夜甘婷婷 | 黑人精品欧美一区二区蜜桃 | 色综合 综合色| 在线观看亚洲成人| 制服丝袜亚洲播放| 国产午夜三级一区二区三| 日本一区二区动态图| 亚洲四区在线观看| 婷婷丁香激情综合| 韩国v欧美v日本v亚洲v| 国产麻豆精品视频| 91国产福利在线| 日韩午夜激情电影| 国产精品久久久久久久久免费樱桃 | 欧美做爰猛烈大尺度电影无法无天| 欧美片网站yy| 久久天天做天天爱综合色| 中文字幕亚洲精品在线观看| 一区二区三区视频在线观看 | 99vv1com这只有精品| 在线观看国产91| 2020国产精品自拍| 一区二区在线观看免费| 热久久免费视频| 91日韩在线专区| 2020日本不卡一区二区视频| 亚洲精品菠萝久久久久久久| 日本不卡视频在线观看| av在线一区二区三区| 欧美一区二区免费视频| 国产精品视频你懂的| 免费欧美日韩国产三级电影| yourporn久久国产精品| 91精品国产入口| 亚洲精品视频一区| 丁香婷婷综合激情五月色| 欧美丝袜丝交足nylons图片| 国产欧美视频在线观看| 日本亚洲视频在线| 在线免费观看视频一区| 亚洲国产精品国自产拍av| 日韩av中文在线观看| 色噜噜狠狠成人中文综合| 久久久久久影视| 九九视频精品免费| 欧美高清视频www夜色资源网| 久久精品欧美一区二区三区不卡 | 久久精品免视看| 日韩欧美二区三区| k8久久久一区二区三区 | 日韩欧美色综合| 欧美va天堂va视频va在线| 久久亚洲免费视频| 欧美四级电影在线观看| 日韩欧美亚洲国产另类| 性做久久久久久久久| 在线中文字幕一区二区| 亚洲美女视频在线| 色婷婷av一区| 一区二区三区免费| 91免费小视频| 亚洲精品videosex极品| 99精品久久免费看蜜臀剧情介绍| 国产欧美久久久精品影院| 国产一区美女在线| 久久久久久久电影| 国产乱码字幕精品高清av| 日韩欧美精品在线视频| 久久精品国产99| 欧美日韩视频第一区| 亚洲精品国产a| 欧美三级日韩三级| 图片区小说区区亚洲影院| 色系网站成人免费| 亚洲欧美国产77777| 99视频在线精品| 国产精品青草久久| 色哟哟国产精品| 欧美视频在线观看一区| 一级精品视频在线观看宜春院| 91麻豆免费视频| 亚洲视频资源在线| 欧美日精品一区视频| 亚洲一区二区三区四区五区中文| 欧美日韩大陆在线| 图片区小说区区亚洲影院| 精品美女在线播放| 国产在线播放一区| 亚洲同性同志一二三专区| 中文字幕五月欧美| 91丨porny丨国产入口| 亚洲成人免费在线观看| 欧美特级限制片免费在线观看| 麻豆国产精品一区二区三区| 欧美变态tickle挠乳网站| 福利一区在线观看| 亚洲欧美日韩国产综合在线| 精品少妇一区二区三区视频免付费 | 欧美一区二区三区啪啪| 国产精品资源在线观看| 国产欧美精品日韩区二区麻豆天美 | 欧美精品久久一区| 91高清在线观看| 一区二区三区四区亚洲| 懂色一区二区三区免费观看| 亚洲国产精品黑人久久久| 国产拍揄自揄精品视频麻豆 | 精品伊人久久久久7777人| 中文字幕在线观看一区二区| 国产一区视频网站| 亚洲自拍都市欧美小说| 日韩欧美在线不卡| 99视频精品全部免费在线| 日本不卡视频在线| 欧美激情在线观看视频免费| 欧美精品丝袜久久久中文字幕| 麻豆精品一区二区三区| 一区二区国产视频| 欧美成人艳星乳罩| 欧美精品丝袜久久久中文字幕| 日韩视频在线你懂得| 成人高清视频在线| 激情欧美日韩一区二区| 亚洲最新视频在线观看| 成人免费在线观看入口| 欧美电影一区二区| 日本丶国产丶欧美色综合| 亚洲一区二区三区三| 亚洲欧洲www| 中文一区一区三区高中清不卡| 欧美日韩中文字幕精品| 91视频在线观看免费| 精品一区二区三区免费播放| 奇米亚洲午夜久久精品| 国产精品久久国产精麻豆99网站| 精品91自产拍在线观看一区| 欧美在线|欧美| 日本道精品一区二区三区| 亚洲成人精品一区二区| 69久久99精品久久久久婷婷 | 99re成人精品视频| 激情综合色播五月| 国产一区在线不卡| 狠狠色丁香久久婷婷综合_中| 亚洲欧美偷拍三级| 欧美中文字幕亚洲一区二区va在线| 国产精品亚洲专一区二区三区| 国产精品亚洲人在线观看| 久久综合九色综合欧美98 | 日韩一卡二卡三卡四卡| 在线这里只有精品| 99麻豆久久久国产精品免费| 婷婷成人激情在线网| 美女一区二区在线观看| 99精品视频一区二区| 免费观看在线综合| 国产亚洲成av人在线观看导航| 91美女精品福利| 成人精品小蝌蚪| 亚洲午夜免费视频| 久久亚洲精品国产精品紫薇| 麻豆成人免费电影| **网站欧美大片在线观看| 91麻豆精品国产| 成人sese在线| 日韩国产欧美在线视频| 在线中文字幕一区| 久久精品国产在热久久| 美腿丝袜亚洲三区| 韩国一区二区三区| 国产精品国产三级国产aⅴ原创| 中文字幕 久热精品 视频在线| 国产精品无码永久免费888| 国产精品少妇自拍| 一区二区三区四区在线免费观看 | 日产精品久久久久久久性色| 日韩激情一区二区| 老汉av免费一区二区三区|