Release Linux 0.9.7
This commit is contained in:
parent
e9a2935a5a
commit
47a2d82738
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,14 +1,13 @@
|
||||||
## Latest
|
## CARLA 0.9.7
|
||||||
* The 'make import' process now rename the assets accordingly and set complex collision as simple
|
|
||||||
* Add build variant with AD RSS library integration with RSS sensor and result visualisation
|
* Add build variant with AD RSS library integration with RSS sensor and result visualisation
|
||||||
* Added exporter plugin for UE4 to allow export meshes ready for Recast calculation.
|
|
||||||
* Support for OpenGL and Vulkan in docker + headless mode
|
* Support for OpenGL and Vulkan in docker + headless mode
|
||||||
* Added new sensor: Inertial measurement unit (IMU)
|
* Added new sensor: Inertial measurement unit (IMU)
|
||||||
* Added new sensor: Radar
|
* Added new sensor: Radar
|
||||||
* Moved GNSS sensor from client to server side
|
* Exposed rgb camera attributes: exposure, depth of field, tonemapper, color correction, and chromatic aberration
|
||||||
* New Python API function added (map.get_crosswalks()) that return a list with all points that define the crosswalk zones from OpenDRIVE file
|
|
||||||
* Improved pedestrians navigation
|
|
||||||
* Now all the camera-based sensors are provided with an additional parametrized lens distortion shader
|
* Now all the camera-based sensors are provided with an additional parametrized lens distortion shader
|
||||||
|
* Added TrafficManager to replace autopilot in managing the NPC vehicles
|
||||||
|
* Improved pedestrians navigation
|
||||||
* API changes:
|
* API changes:
|
||||||
- Lidar: `range` is now set in meters, not in centimeters
|
- Lidar: `range` is now set in meters, not in centimeters
|
||||||
- Lidar: `horizontal_angle` is now received in radians, not in degrees
|
- Lidar: `horizontal_angle` is now received in radians, not in degrees
|
||||||
|
@ -18,17 +17,18 @@
|
||||||
- Added `carla.RadarMeasurement` and `carla.RadarDetection`
|
- Added `carla.RadarMeasurement` and `carla.RadarDetection`
|
||||||
- GNSS data can now be obtained with noise
|
- GNSS data can now be obtained with noise
|
||||||
- IMU data can now be obtained with noise
|
- IMU data can now be obtained with noise
|
||||||
* Updated manual_control.py with a lens disortion effect example
|
* Moved GNSS sensor from client to server side
|
||||||
* Exposed rgb camera attributes: exposure, depth of field, tonemapper, color correction, and chromatic aberration
|
* Added exporter plugin for UE4 to allow export meshes ready for Recast calculation
|
||||||
|
* The 'make import' process now rename the assets accordingly and set complex collision as simple
|
||||||
|
* New Python API function added (map.get_crosswalks()) that returns a list with all points that define the crosswalk zones from OpenDRIVE file
|
||||||
|
* Updated `manual_control.py` with a lens disortion effect example
|
||||||
|
* Updated `manual_control.py` with IMU and Radar realtime visualization
|
||||||
* Fixed pylint for python3 in travis
|
* Fixed pylint for python3 in travis
|
||||||
* Fixed PointCloudIO `cout` that interfiered with other python modules
|
* Fixed PointCloudIO `cout` that interfiered with other python modules
|
||||||
* Better steering in manual control
|
* Better steering in manual control
|
||||||
* Added Doxygen documentation online with automatic updates through Jenkins pipeline
|
* Added Doxygen documentation online with automatic updates through Jenkins pipeline
|
||||||
* Added IMU and Radar realtime visualization in `manual_control.py`
|
|
||||||
* Fixed client_bounding_boxes.py example script
|
* Fixed client_bounding_boxes.py example script
|
||||||
* Exposed in the API: camera, exposure, depth of field, tone mapper and color attributes for the RGB sensor
|
|
||||||
* Fixed materials and semantic segmentation issues regarding importing assets
|
* Fixed materials and semantic segmentation issues regarding importing assets
|
||||||
* Added TrafficManager to replace autopilot in managing the NPC vehicles
|
|
||||||
* Fixed ObstacleSensor to return HitDistance instead of HitRadius
|
* Fixed ObstacleSensor to return HitDistance instead of HitRadius
|
||||||
|
|
||||||
## CARLA 0.9.6
|
## CARLA 0.9.6
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
> features. Keep in mind that the API and features in this channel can (and
|
> features. Keep in mind that the API and features in this channel can (and
|
||||||
> probably will) change.
|
> probably will) change.
|
||||||
|
|
||||||
|
- [CARLA 0.9.7](https://github.com/carla-simulator/carla/releases/tag/0.9.7)
|
||||||
- [CARLA 0.9.6](https://github.com/carla-simulator/carla/releases/tag/0.9.6)
|
- [CARLA 0.9.6](https://github.com/carla-simulator/carla/releases/tag/0.9.6)
|
||||||
- [CARLA 0.9.5](https://github.com/carla-simulator/carla/releases/tag/0.9.5)
|
- [CARLA 0.9.5](https://github.com/carla-simulator/carla/releases/tag/0.9.5)
|
||||||
- [CARLA 0.9.4](https://github.com/carla-simulator/carla/releases/tag/0.9.4)
|
- [CARLA 0.9.4](https://github.com/carla-simulator/carla/releases/tag/0.9.4)
|
||||||
|
|
|
@ -125,7 +125,7 @@ def get_libcarla_extensions():
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='carla',
|
name='carla',
|
||||||
version='0.9.6',
|
version='0.9.7',
|
||||||
package_dir={'': 'source'},
|
package_dir={'': 'source'},
|
||||||
packages=['carla'],
|
packages=['carla'],
|
||||||
ext_modules=get_libcarla_extensions(),
|
ext_modules=get_libcarla_extensions(),
|
||||||
|
|
|
@ -3,7 +3,7 @@ ProjectID=675BF8694238308FA9368292CC440350
|
||||||
ProjectName=CARLA UE4
|
ProjectName=CARLA UE4
|
||||||
CompanyName=CVC
|
CompanyName=CVC
|
||||||
CopyrightNotice="Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de Barcelona (UAB). This work is licensed under the terms of the MIT license. For a copy, see <https://opensource.org/licenses/MIT>."
|
CopyrightNotice="Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de Barcelona (UAB). This work is licensed under the terms of the MIT license. For a copy, see <https://opensource.org/licenses/MIT>."
|
||||||
ProjectVersion=0.9.6
|
ProjectVersion=0.9.7
|
||||||
|
|
||||||
[/Script/Carla.CarlaSettings]
|
[/Script/Carla.CarlaSettings]
|
||||||
+LowRoadMaterials=(MaterialInterface=MaterialInstanceConstant'"/Game/Carla/Static/GenericMaterials/Ground/SimpleRoad/CheapRoad.CheapRoad"',MaterialSlotName="Tileroad_Road",ImportedMaterialSlotName="",UVChannelData=(bInitialized=False,bOverrideDensities=False,LocalUVDensities[0]=0.000000,LocalUVDensities[1]=0.000000,LocalUVDensities[2]=0.000000,LocalUVDensities[3]=0.000000))
|
+LowRoadMaterials=(MaterialInterface=MaterialInstanceConstant'"/Game/Carla/Static/GenericMaterials/Ground/SimpleRoad/CheapRoad.CheapRoad"',MaterialSlotName="Tileroad_Road",ImportedMaterialSlotName="",UVChannelData=(bInitialized=False,bOverrideDensities=False,LocalUVDensities[0]=0.000000,LocalUVDensities[1]=0.000000,LocalUVDensities[2]=0.000000,LocalUVDensities[3]=0.000000))
|
||||||
|
@ -61,5 +61,3 @@ bSkipEditorContent=False
|
||||||
+DirectoriesToAlwaysStageAsUFS=(Path="Carla/Config")
|
+DirectoriesToAlwaysStageAsUFS=(Path="Carla/Config")
|
||||||
bNativizeBlueprintAssets=False
|
bNativizeBlueprintAssets=False
|
||||||
bNativizeOnlySelectedBlueprints=False
|
bNativizeOnlySelectedBlueprints=False
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"FileVersion": 3,
|
"FileVersion": 3,
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"VersionName": "0.9.6",
|
"VersionName": "0.9.7",
|
||||||
"FriendlyName": "CARLA",
|
"FriendlyName": "CARLA",
|
||||||
"Description": "Open-source simulator for autonomous driving research.",
|
"Description": "Open-source simulator for autonomous driving research.",
|
||||||
"Category": "Science",
|
"Category": "Science",
|
||||||
|
|
|
@ -29,4 +29,4 @@
|
||||||
|
|
||||||
0.9.5: 20190404_c7b464a
|
0.9.5: 20190404_c7b464a
|
||||||
0.9.6: 20190710_0097e66
|
0.9.6: 20190710_0097e66
|
||||||
0.9.7: 20191211_4fb89ec
|
0.9.7: 20191211_f63ea8b
|
||||||
|
|
Loading…
Reference in New Issue