Need the project to be done in intellij or eclipse so it will work for the lecturerer that will asses this. The assesment is to impliment a hash table so it works with the included tests. Only need it to reach around 40-50 % 60% if the one that does this finds it easy. All files included with assignment and project files. I will do the report myself. So would need the project filesd by the 15 th if possible. Price can be discussed as i do not know normal pricing

  In C++: Starting from an algebraic expression, the tree associated with this algebraic expression will be created, and then it will be graphically represented, with different options, on the computer screen. You are not allowed using STL such as stack,queue etc. and for graphics you can use Processing,WinBGIm,SFML,SDL.
  Also the expression can have these Trigonometric functions and others : https://docs.microsoft.com/en-us/dotnet/visual-basic/language-reference/functions/math-functions

Using Raspberry pi 4, I want you to write a code using python 3 that is capable of taking a picture using raspberry pi V2 camera and taking the GPS location using the Adafruit Ultimate GPS Breakout module, and tag the image with the GPS location and save them.

This is the link to both parts that are going to be connected to the raspberry pi which also have sample codes,
1- https://www.adafruit.com/product/746
2- https://www.adafruit.com/product/3099

Please let me know if you have any question.

The following has to be done:

The aim of this project is to make a program which will allow the user to take a picture of the desired object. The whole point is that the program will be constantly calculating the ratio of width to height of the object in question. Basically if a person is to stand in a room at a particular position in the room and takes a photo of the object in that particular position, the object will have a given set of dimensions at that point. If the user was to stand at another location in the same room and takes a photo of the same object at a different location, this would result in the object having different set of dimensions. The goal is to find the position in the given space at which the ratio of width to height will be at the golden ratio (1.618). This would be done by creating a 3D arrow as an interface (see Spiderman 2 videogame for an example) which would be able to point in both x,y,z direction in order to guide the user to the location at which the ratio of the object would be golden. Once this location is reached and the ratio is golden the program will automatically take a screenshot of the image in order to get the best results. All existing code on object tracking can be used AS LONG AS IT IS SPECIFIED THAT SOMEONE ELSES CODE IS BEING USED. However the code will have to be tweaked in order to accomplish the objectives above. All code that is written by yourself would have to be explained and commented as to why you are doing what you are doing.
So explanation of the code is crucial and giving credit to already written code that you will use is essential. You can use any programming language you fit best for this task.

Hi,

I need to implement a strategy to remove noise from three different MRI images (all attached to this form). The noise applied on every image has different density in each one of them. I have also attached the images i need to aim for. I would much appreciate to have the code commented in detail in order to understand the work that has been done. Thanks a lot for your help.

Francesco

Attached file: LoadDB.sqlPreview the document

Download the script file, LoadDB.sql to C:CIS4210
Run sqlplus SYSTEM/Oracle11
Enter START C:CIS4210LoadDB.sql
Enter SPOOL C:CIS4210M1spool.txt
DESCRIBE iggy.part;
SELECT * FROM iggy.part;
DESCRIBE iggy.supplier;
SELECT * FROM iggy.supplier;
DESCRIBE iggy.quote;
SELECT * FROM iggy.quote;
SPOOL OFF;
QUIT;

Submit your text document with the file name c:cis4210M1spool.txt . You now can run sqlplus iggy/oracle in order to try the various examples in the book.

Project 2-2: Grade Converter
Create an application that converts number grades to letter grades.

Console
Welcome to the Letter Grade Converter

Enter numerical grade: 90

Letter grade: A

Continue? (y/n): y

Enter numerical grade: 88

Letter grade: A

Continue? (y/n): y

Enter numerical grade: 80

Letter grade: B

Continue? (y/n): y

Enter numerical grade: 67

Letter grade: C

Continue? (y/n): y

Enter numerical grade: 59

Letter grade: F

Continue? (y/n): n

Specifications
The grading criteria is as follows:

A  88-100
B  80-87
C  67-79
D  60-67
F  <60

Assume that the user will enter valid integers between 1 and 100 for the grades.

The application should only continue if the user enters ‘y’ or ‘Y’ in response.

I need a python code which implements KNN from scratch (basic python imports allowed) such as from math import.
Based on the data set attached the knn must be able to classify a new voter if he is going to pol conservative or liberal. SOmething like this but just for my data set.
https://machinelearningmastery.com/tutorial-to-implement-k-nearest-neighbors-in-python-from-scratch/