欧美一级a免费放视频,欧美一级a免费放视频_丰满年轻岳欲乱中文字幕电影_欧美成人性一区二区三区_av不卡网站,99久久精品产品给合免费视频,色综合黑人无码另类字幕,特级免费黄片,看黃色录像片,色色资源站无码AV网址,暖暖 免费 日本 在线播放,欧美com

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

代做 CS 6613、代寫 c++,,python 程序語(yǔ)言
代做 CS 6613,、代寫 c++,python 程序語(yǔ)言

時(shí)間:2024-11-11  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



CS 6613 Fall 2024 Project 1: Robot Path Planning
Total # points = 100.
Project Description: Implement the A* search algorithm with graph search (no repeated states) for the robot path planning problem as described below. The inputs to your program are the start and goal positions of a point robot, and a 2D integer array that represents the robot workspace. The robot can move from cell to cell in any of the eight directions as shown in Figure 2. The goal is to find the lowest-cost path between the start position and the goal position, and avoiding obstacles along the path. The workspace is represented as an occupancy grid as shown in Figure 1, where the black cells represent obstacles. The red line in the figure depicts a path from the start position to the goal position. (Note: the path in the figure is not the lowest-cost path as required in our project.)
where
Formulation: The problem can be formulated in the following way. Each cell in the workspace is a state. The white cells are legal states and the black cells are illegal states. The actions are the eight moves as defined in Figure 2. The step cost for the actions is the sum of the angle cost and the distance cost; i.e.,
𝑐𝑐(w**4;w**4;, 𝑎𝑎, w**4;w**4;′) = 𝑐𝑐𝑎𝑎(w**4;w**4;, 𝑎𝑎, w**4;w**4;′) + 𝑐𝑐𝑑𝑑(w**4;w**4;, 𝑎𝑎, w**4;w**4;′)
3, 5, 7.
𝑐𝑐𝑎𝑎(w**4;w**4;, 𝑎𝑎, w**4;w**4;′) = 𝑘𝑘 ∗ ∆𝜃𝜃 ; let 𝑐𝑐𝑎𝑎(w**4;w**4;, 𝑎𝑎, w**4;w**4;′) = 0 if s is the initial state (start position) 180
∆𝜃𝜃 = |(𝜃𝜃(w**4;w**4;′) − 𝜃𝜃(w**4;w**4;)|; if ∆𝜃𝜃 > 180, let ∆𝜃𝜃 equals 360 − ∆𝜃𝜃
𝑐𝑐𝑑𝑑(w**4;w**4;, 𝑎𝑎, w**4;w**4;′) = 1 for horizontal and vertical moves 0, 2, 4, 6 and √2 for diagonal moves 1,
In the above, s is the current state, a is the action and s’ is the next state. The angle cost is to penalize any change in the direction of the robot between two consecutive moves. k is a constant that we can set to control the amount of penalty we want to impose for angle change. For the initial state (start position), we let the angle cost between the initial state s and next state s’ equals to 0. The distance cost is for the distance travelled in an action. Let h(𝑛𝑛) be the Euclidian distance between the current position and the goal position. h(𝑛𝑛) thus defined is admissible in this problem. During the search, only legal states (cells without obstacles) will be added to the tree.
Input and output formats: The workspace in the test input files is of size 30 × 50 (rows x columns.) We will use the coordinate system as shown in Figure 3 below. The coordinates of the lower-left corner cell are (𝑖𝑖, 𝑗𝑗) = (0,0). The input file contains 31 lines of integers as shown in Figure 4 below. Line 1 contains the (𝑖𝑖, 𝑗𝑗) coordinates of the start and goal positions of the point robot. Lines 2 to 31 contain the cell values of the robot workspace, with 0’s representing white cells, 1’s representing black cells, 2 representing the start position and 5 representing the goal position. Line 2 contains values for (𝑖𝑖, 𝑗𝑗) = (𝑖𝑖, 29), with 𝑖𝑖 = 0 to 49. Line 31 contains values for (𝑖𝑖, 𝑗𝑗) = (𝑖𝑖, 0), with 𝑖𝑖 = 0 to 49, etc. The integers in each line are separated by blank spaces.
Your program will produce an output text file that contains 34 lines of text as shown in Figure 5 below. Line 1 contains the depth level d of the goal node as found by the A* algorithm (assume that the root node is at level 0.) Line 2 contains the total number of nodes N generated in your tree (including the root node.) Line 3 contains the solution (a sequence of moves from the root node to the goal node) represented by a’s. The a’s are separated by blanks. Each a is a move from the set {0,1,2,3,4,5,6,7}. Line 4 contains the f(n) values of the nodes (separated by blanks,) from the root node to the goal node, along the solution path. There should be d number of a values in line 3 and

CS 6613 Fall 2024 Project 1: Robot Path Planning E. K. Wong
d+1 number of f values in line 4. Lines 5 to 34 contain values for the robot workspace, with 0’s representing white cells, 1’s representing black cells, 2 representing the start position, 5 representing the goal position, and 4’s representing cells along the solution path (excluding the start position and the goal position.)
  Figure 3. Coordinate system of the work space.

CS 6613 Fall 2024 Project 1: Robot Path Planning E. K. Wong
Testing your program: Three input test files will be provided on Brightspace for you to test your program. For each input file, try two different runs: one with k = 2 and one with k =4. You can let k be an interactive input parameter in your program.
Recommended languages: Python, C++/C or Java. If you would like to use a different language, send me an email first.
Teammate: You can work on the project by yourself or form a team of two to work on the project. You can discuss with your classmates how to do the project, but every team is expected to write their own code and submit their own project.
Submit on Brightspace:
• Your source code file. Put comments in your source code to make it easier for someone else to read your program. Points will be taken off if you do not have comments in your source code.
• The output files generated by your program for the three input test files.
• A PDF report that contains instructions on how to run your program. If your program requires compilation, instructions on how to compile your program should also be provided. Also, copy and paste your output files and your source code onto the PDF file. This is in addition to the source code file and output files that you have to hand in
separately, as described in items (1) and (2) above.
• If you work in a team of two, only one partner needs to submit the project on Brightspace
but put down both partners’ names on the source code and the PDF report.
 d
N
a a a ....a
f f f .....f
m m m m m m ....m m m m m m m ....m ...
m m m m m m ....m
Figure 5. Output file format (34 lines.) d, N, a’s, and m’s are integers. f’s are floating point numbers. The a’s, f’s and m’s are separated by blanks.
 nnnn
m m m m m m ....m m m m m m m ....m ...
m m m m m m ....m
Figure 4. Input file format (31 lines.) n’s and m’s are integers separated by blanks.

請(qǐng)加QQ:99515681  郵箱:[email protected]   WX:codinghelp



 

掃一掃在手機(jī)打開當(dāng)前頁(yè)
  • 上一篇:代寫 MSE 609,、代做 Java,C++設(shè)計(jì)程序
  • 下一篇:代寫 COMP0035,、代做 python 設(shè)計(jì)程序
  • ·代寫2530FNW,、代做Python程序語(yǔ)言
  • ·代寫CIS5200,、代做Java/Python程序語(yǔ)言
  • ·代寫CS 417編程,、代做Python程序語(yǔ)言
  • ·代做ELEC5307,、python程序語(yǔ)言代寫
  • ·COMP5328代做,、代寫Python程序語(yǔ)言
  • ·CMP5321代做,、代寫Python程序語(yǔ)言
  • · 代做BUSFIN 711,、代寫Python程序語(yǔ)言
  • ·COMP4620代做、代寫Java/Python程序語(yǔ)言
  • ·代做BSAN3212、代寫c/c++,,Python程序語(yǔ)言
  • ·代做DATA7703、代寫Python程序語(yǔ)言
  • 合肥生活資訊

    合肥圖文信息
    出評(píng) 開團(tuán)工具
    出評(píng) 開團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    戴納斯帝壁掛爐全國(guó)售后服務(wù)電話24小時(shí)官網(wǎng)400(全國(guó)服務(wù)熱線)
    戴納斯帝壁掛爐全國(guó)售后服務(wù)電話24小時(shí)官網(wǎng)
    菲斯曼壁掛爐全國(guó)統(tǒng)一400售后維修服務(wù)電話24小時(shí)服務(wù)熱線
    菲斯曼壁掛爐全國(guó)統(tǒng)一400售后維修服務(wù)電話2
    美的熱水器售后服務(wù)技術(shù)咨詢電話全國(guó)24小時(shí)客服熱線
    美的熱水器售后服務(wù)技術(shù)咨詢電話全國(guó)24小時(shí)
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
  • 上海廠房出租 短信驗(yàn)證碼 酒店vi設(shè)計(jì)