본문 바로가기

전체 글

(138)
Unreal & VS generated.h error 이런 error가 떴을 땐unreal editor 끄기 -> source file 열기 -> 빌드 클릭 -> 솔류선 다시 빌드하면 해결된다.
Cesium for Unreal Quickstart Cesium for Unreal QuickstartStep 1: Install the Cesium for Unreal pluginOpen the Cesium for Unreal plugin page on the Unreal Engine Marketplace.click the Install to Engine button to add the plugin to your Unreal Engine installation.Step2: Create a Cesium for Unreal projectSelect Game as the New Project Category and Blank as the Template.Open the Plugins window (Edit -> Plugins) and search for “..
Visualize a Proposed Building in a 3D City Step 1: Identify the new building areaDownload the GeoJSON file.Drage and drop the GeoJSON file in your Cesium ion dashboard.Press Upload.Step 2: Afte Uploading, note the asset IDReplace your_asset_id with your asset ID.async function addBuildingGeoJSON() { const geoJSONURL = await Cesium.IonResource.fromAssetId(your_asset_id); const geoJSON = await Cesium.GeoJsonDataSource.load(geoJSONURL, { ..
Build a Flight Tracker Tutorialvisualize a real flight from Busan to Seoul, with radar data collected by FlightRadar24.setp 1: Set upCreate a new Glitch projectyour_token_here -> Replace your access tokenPREVIEW click and select Close preview pane || Preview in a new window// index.html// import CesiumJS library.// HTML container for the sceneConfigure auto-refreshcheck Toggle auto refresh Step 2: Add global 3D buildi..
CesiumJS 개발 환경 준비(IntelliJ 기준) CesiumJS은 두 가지 방식이 있다.CDN온라인 사용(인터넷 필수)HTML 태그에서 자주 사용한다.빠르게 테스트 하거나 프로토타입을 만들 떄 사용NPM오프라인 사용 및 온라인 사용(인터넷 필 수 X)규모있는 프로젝트에서 체계적으로 의존성을 관리할 때CDN기본적으로 HTML과 server가 있어야한다. // server.js const express = require('express'); const path = require('path'); const app = express(); const port = 3000; // 'public' 폴더에서 정적 파일 제공 app.use(express.static(path.join(__dirname, 'public'))); // ..
CesiumJS란? Cesium JSCesium JS는 3D 지리 정보 시스템(GIS) 을 위한 오픈소스 JavaScript 라이브러리로, 웹에서 고성능 3D 지도와 시뮬레이션을 구현할 수 있도록 돕습니다. Cesium을 사용하면 웹 애플리케이션에서 실시간 3D 지리 정보, 항공 촬영, 위성 이미지, 3D 모델 등을 시각적으로 표현할 수 있습니다.주요 특징3D 지구 렌더링Cesium은 글로브 기반 3D 지구를 제공합니다. 이를 통해 사용자는 전 세계를 3D로 탐색하고, 고도 및 기하학적 특성을 실시간으로 볼 수 있습니다.실시간 데이터 스트리밍Cesium은 실시간 데이터를 처리하는 기능도 제공합니다. 예를 들어, 항공기 위치, 기상 데이터, 선박 트래킹 등을 실시간으로 시각화할 수 있습니다.WebGL을 통한 하드웨어 가속Ce..
Classification In [1]:from keras.src.activations import thresholdfrom sklearn.datasets import fetch_openmlimport matplotlib.pyplot as pltIn [2]:mnist = fetch_openml('mnist_784', as_frame=False)X, y = mnist.data, mnist.targetX.shape, y.shapeOut[2]:((70000, 784), (70000,))In [3]:def plot_digit(image_data): image = image_data.reshape(28, 28) plt.imshow(image, cmap='binary') plt.axis('off')some_digit = X[..
housing 데이터를 이용한 머신러닝 학습 In [2]:from zipimport import alt_path_sepimport pandas as pdimport numpy as npfrom sklearn.utils.validation import check_is_fittedfrom tensorboard.plugins.histogram.summary import histogramIn [3]:housing = pd.read_csv('housing.csv')housing.head()Out[3]:longitudelatitudehousing_median_agetotal_roomstotal_bedroomspopulationhouseholdsmedian_incomemedian_house_valueocean_proximity0-122.2337.8841.088..