I would like to create an ee.Geometry.Rectangle centered at a specific coordinate point and with specific width and height values in pixels. ee.Geometry.Rectangle accepts the coordinate points for the minimum and maximum corners of the rectangle; however, I want don't want to pass these but instead do something similar to the folium library
folium.Map(location=[lon,lat], zoom_start=19, width=256, height=256)
Is there any way to export the bounds from folium.map as coordinate points or perhaps a way to use the ee API directly? The reason why I want to do this is because I will be using the images centered at specific coordinate points and would like to test the effect image size on the classification accuracy of my algorithm.