Assignment
Goal: make training/test data on smaller field of view (FoV) from a set of experimental data on a large FoV.
Input:
•5-dimensional matrix ‘g’of size [X, Y, Z, Nthe, Nphi], for example, for the U2OS Action data set, g is of the size [512, 512, 53, 3, 5].
•Cropping window size [outX, outY, outZ], for example, we want to crop the data into [128, 128, 16, 3, 5].
• Stride value [Sx, Sy, Sz]: howmany pixels one should slide the window, for example, we want to slide the cropping window every 32 pixels in X and Y directions, and 4 pixels in Z direction. Output:
• [1+floor((X –outX)/Sx)]x[1+floor((Y –outY)/Sy)]x[1+floor((Z –outZ)/Sz)] sets of 5-dimensional matrices ‘Gout’ of the size [outX, outY, outZ]. For the U2OS actin data set, it will be (1+floor((512-128)/32))*(1+floor((512-128)/32))*(1+floor((53-16)/4)) = 1690 sets of 5-dimensional matrices of the size [128, 128, 16, 3, 5].
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme